Files
cnpmcore/module.d.ts
fengmk2 4427a4fca5 feat: use egg v4 (#747)
BREAKING CHANGE: only support egg >= 4.0.0

the first app on egg v4

https://github.com/eggjs/egg/issues/3644
2025-02-09 15:43:24 +08:00

8 lines
156 B
TypeScript

import { ContextCnpmcore } from "./app/core/typing";
declare module "egg" {
export interface EggContextModule {
cnpmcoreCore: ContextCnpmcore;
}
}