// This file is created by egg-ts-helper@1.35.1 // Do not modify this file!!!!!!!!! /* eslint-disable */ 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 ExportHaikangweishi = require('../../../app/service/haikangweishi'); import ExportHome = require('../../../app/service/home'); import ExportUtils = require('../../../app/service/utils'); declare module 'egg' { interface IService { haikangweishi: AutoInstanceType; home: AutoInstanceType; utils: AutoInstanceType; } }