UNPKG

ajsfw

Version:
9 lines (8 loc) 519 B
export { ILoggerConfig } from "./lib/plugins/logger/ILoggerConfig"; export { LogType } from "./lib/plugins/logger/LogType"; export * from "./lib/plugins/logger/ILogger"; export * from "./lib/plugins/logger/Logger"; import * as logger from "./lib/plugins/logger"; import { IContainer } from "ajsfw/di"; export declare function log(type: logger.LogType, level: number, module: string, object: any, message?: string, ...data: any[]): void; export declare function initialize(container: IContainer): Promise<void>;