UNPKG

@geniucode/common-utils

Version:

Common utils

17 lines (16 loc) 474 B
export declare class LogMsgPrefix { private moduleName; constructor(moduleName: string); private prefixMsg; private infoPrefix; private errorPrefix; private warnPrefix; } export declare class CLog { private debug; private moduelName; constructor(moduelName: string, debug: boolean); static log(data: any, debug?: boolean): void; static warn(data: any, debug?: boolean): void; static error(data: any, debug?: boolean): void; }