blob: bcc219c883f63ec877b0969106ee621648ec93da [file] [log] [blame]
// 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<T = any> = (...args: any[]) => T;
type CanExportFunc = AnyFunc<Promise<any>> | AnyFunc<IterableIterator<any>>;
type AutoInstanceType<
T,
U = T extends CanExportFunc ? T : T extends AnyFunc ? ReturnType<T> : T
> = U extends AnyClass ? InstanceType<U> : U;
import ExportTest from '../../../app/service/test';
declare module 'egg' {
interface IService {
test: AutoInstanceType<typeof ExportTest>;
}
}