@asapjs/router 0.0.1 → 0.0.2
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.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +3 -0
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1 +1,13 @@
|
|
|
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.HttpException = exports.jwtVerification = exports.RouterModule = void 0;
|
|
7
|
+
var index_1 = require("./router/index");
|
|
8
|
+
Object.defineProperty(exports, "RouterModule", { enumerable: true, get: function () { return __importDefault(index_1).default; } });
|
|
9
|
+
var jwtVerification_1 = require("./middleware/jwtVerification");
|
|
10
|
+
Object.defineProperty(exports, "jwtVerification", { enumerable: true, get: function () { return __importDefault(jwtVerification_1).default; } });
|
|
11
|
+
var errorHandler_1 = require("./middleware/errorHandler");
|
|
12
|
+
Object.defineProperty(exports, "HttpException", { enumerable: true, get: function () { return errorHandler_1.HttpException; } });
|
|
1
13
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,wCAAyD;AAAhD,sHAAA,OAAO,OAAgB;AAChC,gEAA0E;AAAjE,mIAAA,OAAO,OAAmB;AACnC,0DAA0D;AAAjD,6GAAA,aAAa,OAAA"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED