smart-factory
Version:
functional programming-ready dependancy injector/ioc container library
9 lines (8 loc) • 306 B
TypeScript
export declare enum Modules {
HELLO_FUNC = "HELLO_FUNC",
MSG_PROVIDER = "MSG_PROVIDER",
MSG_PRINTER = "MSG_PRINTER"
}
export declare type MsgProvider = (lang: string) => string;
export declare type MsgPrinter = (msg: string) => void;
export declare type HelloFunction = (lang: string) => void;