Files
ZYZ/web-server/typings/app/controller/index.d.ts
2020-08-15 22:42:04 +08:00

14 lines
321 B
TypeScript

// This file is created by egg-ts-helper@1.25.8
// Do not modify this file!!!!!!!!!
import 'egg';
import ExportAccount from '../../../app/controller/account';
import ExportHome from '../../../app/controller/home';
declare module 'egg' {
interface IController {
account: ExportAccount;
home: ExportHome;
}
}