web_api_base 1.0.1 → 1.1.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 +21 -0
- package/dist/Index.js.map +1 -1
- package/dist/index.d.ts +14 -0
- package/package.json +1 -1
package/dist/Index.js
CHANGED
|
@@ -1,2 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.DependencyInjection = exports.Core = void 0;
|
|
7
|
+
const Application_1 = __importDefault(require("./Application"));
|
|
8
|
+
const ApplicationConfiguration_1 = __importDefault(require("./ApplicationConfiguration"));
|
|
9
|
+
const ControllerDecorators_1 = __importDefault(require("./decorators/controllers/ControllerDecorators"));
|
|
10
|
+
const ControllerBase_1 = require("./controllers/base/ControllerBase");
|
|
11
|
+
const DependecyService_1 = __importDefault(require("./dependencyInjection/DependecyService"));
|
|
12
|
+
var Core;
|
|
13
|
+
(function (Core) {
|
|
14
|
+
exports.Application = Application_1.default;
|
|
15
|
+
exports.ApplicationConfiguration = ApplicationConfiguration_1.default;
|
|
16
|
+
exports.ControllerBase = ControllerBase_1.ControllerBase;
|
|
17
|
+
exports.ControllersDecorators = ControllerDecorators_1.default;
|
|
18
|
+
})(Core = exports.Core || (exports.Core = {}));
|
|
19
|
+
var DependencyInjection;
|
|
20
|
+
(function (DependencyInjection) {
|
|
21
|
+
exports.DependecyService = DependecyService_1.default;
|
|
22
|
+
})(DependencyInjection = exports.DependencyInjection || (exports.DependencyInjection = {}));
|
|
2
23
|
//# 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,gEAAuC;AACvC,0FAAkE;AAClE,yGAAkF;AAClF,sEAAmE;AAMnE,8FAAsE;AAItE,IAAiB,IAAI,CAOpB;AAPD,WAAiB,IAAI;IAEjB,OAAO,CAAC,WAAW,GAAG,qBAAW,CAAC;IAClC,OAAO,CAAC,wBAAwB,GAAG,kCAAwB,CAAC;IAC5D,OAAO,CAAC,cAAc,GAAG,+BAAc,CAAC;IACxC,OAAO,CAAC,qBAAqB,GAAG,8BAAqB,CAAC;AAE1D,CAAC,EAPgB,IAAI,GAAJ,YAAI,KAAJ,YAAI,QAOpB;AAED,IAAiB,mBAAmB,CAGnC;AAHD,WAAiB,mBAAmB;IAEhC,OAAO,CAAC,gBAAgB,GAAG,0BAAgB,CAAC;AAChD,CAAC,EAHgB,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAGnC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import IApplicationConfigurationTp from "./interfaces/IApplicationConfiguration";
|
|
2
|
+
import IApplicationTp from "./interfaces/IApplication";
|
|
3
|
+
import IControllerTp from "./interfaces/IController";
|
|
4
|
+
import IMidlewareTp from './midlewares/IMidleware';
|
|
5
|
+
export declare namespace Core {
|
|
6
|
+
}
|
|
7
|
+
export declare namespace DependencyInjection {
|
|
8
|
+
}
|
|
9
|
+
export declare namespace Interfaces {
|
|
10
|
+
type IApplicationConfiguration = IApplicationConfigurationTp;
|
|
11
|
+
type IApplication = IApplicationTp;
|
|
12
|
+
type IController = IControllerTp;
|
|
13
|
+
type IMidleware = IMidlewareTp;
|
|
14
|
+
}
|