@tsonic/express 10.0.1 → 10.0.13

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/index.d.ts CHANGED
@@ -16,6 +16,14 @@ export { Application as Application } from './index/internal/index.js';
16
16
  export { AppServer as AppServer } from './index/internal/index.js';
17
17
  export type NextFunction = Internal.NextFunction;
18
18
  export type RequestHandler = Internal.RequestHandler;
19
+ export type RequestHandlerSync = Internal.RequestHandlerSync;
20
+ export type RequestHandlerReturn = Internal.RequestHandlerReturn;
21
+ export type RouteHandler = Internal.RouteHandler;
22
+ export type RouteHandlerSync = Internal.RouteHandlerSync;
23
+ export type RouteHandlerReturn = Internal.RouteHandlerReturn;
24
+ export type ErrorRequestHandler = Internal.ErrorRequestHandler;
25
+ export type ErrorRequestHandlerSync = Internal.ErrorRequestHandlerSync;
26
+ export type ErrorRequestHandlerReturn = Internal.ErrorRequestHandlerReturn;
19
27
  export type ParamHandler = Internal.ParamHandler;
20
28
  export type VerifyBodyHandler = Internal.VerifyBodyHandler;
21
29
  export type MediaTypeMatcher = Internal.MediaTypeMatcher;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/express",
3
- "version": "10.0.1",
3
+ "version": "10.0.13",
4
4
  "description": "TypeScript type definitions for Express.js style API on ASP.NET Core",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -19,7 +19,7 @@
19
19
  "url": "https://github.com/tsoniclang/express.git"
20
20
  },
21
21
  "peerDependencies": {
22
- "@tsonic/dotnet": "^10.0.1",
23
- "@tsonic/core": "^10.0.1"
22
+ "@tsonic/dotnet": "10.0.12",
23
+ "@tsonic/core": "10.0.12"
24
24
  }
25
25
  }
@@ -0,0 +1,10 @@
1
+ {
2
+ "dotnet": {
3
+ "frameworkReferences": [
4
+ { "id": "Microsoft.AspNetCore.App", "types": "@tsonic/aspnetcore" }
5
+ ],
6
+ "packageReferences": [
7
+ { "id": "Tsonic.Express", "version": "1.0.0", "types": "@tsonic/express" }
8
+ ]
9
+ }
10
+ }