// This file is created by egg-ts-helper@1.25.8 // Do not modify this file!!!!!!!!! import 'egg'; type AnyClass = new (...args: any[]) => any; type AnyFunc = (...args: any[]) => T; type CanExportFunc = AnyFunc> | AnyFunc>; type AutoInstanceType : T> = U extends AnyClass ? InstanceType : U; import ExportAuth from '../../../app/service/Auth'; import ExportSdk from '../../../app/service/Sdk'; import ExportTest from '../../../app/service/Test'; import ExportTurboCore from '../../../app/service/TurboCore'; import ExportUpdate from '../../../app/service/Update'; import ExportUtils from '../../../app/service/Utils'; import ExportWjx from '../../../app/service/Wjx'; declare module 'egg' { interface IService { auth: AutoInstanceType; sdk: AutoInstanceType; test: AutoInstanceType; turboCore: AutoInstanceType; update: AutoInstanceType; utils: AutoInstanceType; wjx: AutoInstanceType; } }