Files
ZYZ/web-server/typings/app/controller/index.d.ts
2026-03-13 01:38:40 +00:00

21 lines
577 B
TypeScript

// This file is created by egg-ts-helper@1.35.2
// Do not modify this file!!!!!!!!!
/* eslint-disable */
import 'egg';
import ExportAccount from '../../../app/controller/account';
import ExportGame from '../../../app/controller/game';
import ExportHome from '../../../app/controller/home';
import ExportSdk from '../../../app/controller/sdk';
import ExportUpdate from '../../../app/controller/update';
declare module 'egg' {
interface IController {
account: ExportAccount;
game: ExportGame;
home: ExportHome;
sdk: ExportSdk;
update: ExportUpdate;
}
}