UNPKG

tsioc

Version:

tsioc is AOP, Ioc container, via typescript decorator

9 lines (8 loc) 340 B
import { IModuleLoader } from '../IModuleLoader'; import { Type } from '../types'; import { AsyncLoadOptions } from '../LoadOptions'; export declare class NodeModuleLoader implements IModuleLoader { constructor(); load(options: AsyncLoadOptions): Promise<(Type<any> | object)[]>; loadModule(file: string): Type<any> | object; }