@qso-soft/shared
Version:
Shared library for QSO-soft
16 lines (15 loc) • 403 B
TypeScript
export declare const LOGS_PATH = "./logs";
export declare const COMBINED_LOGS = "combined.log";
export declare const TIMESTAMP_FORMAT = "DD-MM-YYYY HH:mm:ss";
export declare const LEVELS_NAMES: {
error: string;
warning: string;
success: string;
info: string;
};
export declare const LEVELS: {
[x: string]: number;
};
export declare const LEVELS_COLORS: {
[x: string]: string;
};