UNPKG

147 BTypeScriptView Raw
1export declare function factory(name: string, ...toInject: string[]): (target: Function) => void;
2export interface IFactory<T> {
3 build(): T;
4}