web_api_base 1.0.1 → 1.2.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 CHANGED
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
2
3
  //# sourceMappingURL=index.js.map
package/dist/index.d.ts CHANGED
@@ -0,0 +1,24 @@
1
+ import ApplicationTp from "./Application";
2
+ import ApplicationConfigurationTp from "./ApplicationConfiguration";
3
+ import ControllersDecoratorsTp from "./decorators/controllers/ControllerDecorators";
4
+ import { ControllerBase as ControllerBaseTp } from "./controllers/base/ControllerBase";
5
+ import IApplicationConfigurationTp from "./interfaces/IApplicationConfiguration";
6
+ import IApplicationTp from "./interfaces/IApplication";
7
+ import IControllerTp from "./interfaces/IController";
8
+ import DependecyServiceTp from "./dependencyInjection/DependecyService";
9
+ import IMidlewareTp from './midlewares/IMidleware';
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web_api_base",
3
- "version": "1.0.1",
3
+ "version": "1.2.0",
4
4
  "description": "web api base",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",