@midwayjs/web
Version:
Midway Web Framework for Egg.js
15 lines • 491 B
TypeScript
declare const EGG_LOADER: unique symbol;
declare const EGG_PATH: unique symbol;
declare const BaseEggApplication: any;
declare const BaseEggAgent: any;
declare class EggApplication extends BaseEggApplication {
get [EGG_LOADER](): any;
get [EGG_PATH](): string;
}
declare class EggAgent extends BaseEggAgent {
get [EGG_LOADER](): any;
get [EGG_PATH](): string;
}
export { EggApplication as Application };
export { EggAgent as Agent };
//# sourceMappingURL=application.d.ts.map