web_api_base 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Index.js +14 -0
- package/dist/Index.js.map +1 -1
- package/dist/index.d.ts +9 -24
- package/package.json +1 -1
package/dist/Index.js
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.DependecyService = exports.ControllerBase = exports.ControllersDecorators = exports.ApplicationConfiguration = exports.Application = void 0;
|
|
7
|
+
var Application_1 = require("./Application");
|
|
8
|
+
Object.defineProperty(exports, "Application", { enumerable: true, get: function () { return __importDefault(Application_1).default; } });
|
|
9
|
+
var ApplicationConfiguration_1 = require("./ApplicationConfiguration");
|
|
10
|
+
Object.defineProperty(exports, "ApplicationConfiguration", { enumerable: true, get: function () { return __importDefault(ApplicationConfiguration_1).default; } });
|
|
11
|
+
var ControllerDecorators_1 = require("./decorators/controllers/ControllerDecorators");
|
|
12
|
+
Object.defineProperty(exports, "ControllersDecorators", { enumerable: true, get: function () { return __importDefault(ControllerDecorators_1).default; } });
|
|
13
|
+
var ControllerBase_1 = require("./controllers/base/ControllerBase");
|
|
14
|
+
Object.defineProperty(exports, "ControllerBase", { enumerable: true, get: function () { return ControllerBase_1.ControllerBase; } });
|
|
15
|
+
var DependecyService_1 = require("./dependencyInjection/DependecyService");
|
|
16
|
+
Object.defineProperty(exports, "DependecyService", { enumerable: true, get: function () { return __importDefault(DependecyService_1).default; } });
|
|
3
17
|
//# sourceMappingURL=index.js.map
|
package/dist/Index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;AAAA,6CAAsD;AAA7C,2HAAA,OAAO,OAAe;AAC/B,uEAAiF;AAAxE,qJAAA,OAAO,OAA4B;AAC5C,sFAAiG;AAAxF,8IAAA,OAAO,OAAyB;AACzC,oEAAmE;AAA1D,gHAAA,cAAc,OAAA;AACvB,2EAAqF;AAA5E,qIAAA,OAAO,OAAoB"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,24 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
export declare namespace Core {
|
|
11
|
-
type Application = ApplicationTp;
|
|
12
|
-
type ApplicationConfiguration = ApplicationConfigurationTp;
|
|
13
|
-
type ControllerBase = ControllerBaseTp;
|
|
14
|
-
type ControllersDecorators = ControllersDecoratorsTp;
|
|
15
|
-
}
|
|
16
|
-
export declare namespace DependencyInjection {
|
|
17
|
-
type DependecyService = DependecyServiceTp;
|
|
18
|
-
}
|
|
19
|
-
export declare namespace Interfaces {
|
|
20
|
-
type IApplicationConfiguration = IApplicationConfigurationTp;
|
|
21
|
-
type IApplication = IApplicationTp;
|
|
22
|
-
type IController = IControllerTp;
|
|
23
|
-
type IMidleware = IMidlewareTp;
|
|
24
|
-
}
|
|
1
|
+
export { default as Application } from "./Application";
|
|
2
|
+
export { default as ApplicationConfiguration } from "./ApplicationConfiguration";
|
|
3
|
+
export { default as ControllersDecorators } from "./decorators/controllers/ControllerDecorators";
|
|
4
|
+
export { ControllerBase } from "./controllers/base/ControllerBase";
|
|
5
|
+
export { default as DependecyService } from "./dependencyInjection/DependecyService";
|
|
6
|
+
export { default as IMidleware } from './midlewares/IMidleware';
|
|
7
|
+
export { default as IApplicationConfiguration } from "./interfaces/IApplicationConfiguration";
|
|
8
|
+
export { default as IApplication } from "./interfaces/IApplication";
|
|
9
|
+
export { default as IApplicatiIControllernConfiguration } from "./interfaces/IController";
|