@lillallol/dic
Version:
My own dependency injection container.
21 lines (20 loc) • 660 B
TypeScript
import type { IDic, ITYPES } from "../publicApi";
export declare const printDependencyGraph: (parameters: {
/**
* @description
* The dependency injection container instance that contains the registration of the dependency graph
* that you want to print.
*/
dic: IDic;
/**
* @description
* The abstraction for which the dependency graph will be printed.
*/
rootAbstraction: symbol;
/**
* @description
* An object literal that maps strings to abstractions. The strings will be used as names for
* the abstractions when the dependency tree is printed.
*/
TYPES: ITYPES;
}) => string;