@eggjs/koa 3.0.0 → 3.1.0-beta.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 CHANGED
@@ -1,7 +1,6 @@
1
- import { Application } from './application.ts';
2
- export default Application;
3
- export * from './application.ts';
4
- export * from './context.ts';
5
- export * from './request.ts';
6
- export * from './response.ts';
7
- export type { CustomError, AnyProto } from './types.ts';
1
+ import { Response } from "./response.js";
2
+ import { Request, RequestSocket } from "./request.js";
3
+ import { AnyProto, CustomError } from "./types.js";
4
+ import { Context } from "./context.js";
5
+ import { Application, MiddlewareFunc, Next, ProtoImplClass } from "./application.js";
6
+ export { type AnyProto, Application, Context, type CustomError, MiddlewareFunc, Next, ProtoImplClass, Request, RequestSocket, Response, Application as default };
package/dist/index.js CHANGED
@@ -1,7 +1,10 @@
1
+ import { Context } from "./context.js";
2
+ import { Request } from "./request.js";
3
+ import { Response } from "./response.js";
1
4
  import { Application } from "./application.js";
2
- export default Application;
3
- export * from "./application.js";
4
- export * from "./context.js";
5
- export * from "./request.js";
6
- export * from "./response.js";
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBRS9DLGVBQWUsV0FBVyxDQUFDO0FBRTNCLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxlQUFlLENBQUMifQ==
5
+
6
+ //#region src/index.ts
7
+ var src_default = Application;
8
+
9
+ //#endregion
10
+ export { Application, Context, Request, Response, src_default as default };