UNPKG

@notjustcoders/ioc-arise

Version:

Arise type-safe IoC containers from your code. Zero overhead, zero coupling.

8 lines 434 B
import { ClassInfo, AnalyzerOptions, FactoryInfo, ValueInfo } from '../types'; export declare function analyzeProject(sourceDir: string, options?: Partial<AnalyzerOptions>): Promise<ClassInfo[]>; export declare function analyzeProjectWithFactories(sourceDir: string, options?: Partial<AnalyzerOptions>): Promise<{ classes: ClassInfo[]; factories: FactoryInfo[]; values: ValueInfo[]; }>; //# sourceMappingURL=index.d.ts.map