@notjustcoders/ioc-arise
Version:
Arise type-safe IoC containers from your code. Zero overhead, zero coupling.
16 lines • 594 B
TypeScript
export declare class ContainerAggregator {
/**
* Generates the aggregated container code.
*/
generateAggregatedContainer(sortedModules: string[]): string;
/**
* Generates the type export for the container.
*/
generateModularTypeExport(): string;
/**
* Generates the type export for the container with path injection utilities.
* @param outputPath Path to the container file to check for existing onInit content
*/
generateModularTypeExportWithPathUtils(outputPath?: string): string;
}
//# sourceMappingURL=container-aggregator.d.ts.map