// 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 ExportHome = require('../../../app/service/home'); declare module 'egg' { interface IService { home: AutoInstanceType; } }