18 lines
483 B
TypeScript
18 lines
483 B
TypeScript
// This file is created by egg-ts-helper@1.26.0
|
|
// Do not modify this file!!!!!!!!!
|
|
|
|
import 'egg';
|
|
import ExportAccount from '../../../app/controller/account';
|
|
import ExportGame from '../../../app/controller/game';
|
|
import ExportHome from '../../../app/controller/home';
|
|
import ExportUpdate from '../../../app/controller/update';
|
|
|
|
declare module 'egg' {
|
|
interface IController {
|
|
account: ExportAccount;
|
|
game: ExportGame;
|
|
home: ExportHome;
|
|
update: ExportUpdate;
|
|
}
|
|
}
|