@ncodedcode/ncode_react_lib
Version:
ncode react application context library
16 lines (15 loc) • 460 B
TypeScript
export declare enum NCLogLevel {
Verbose = 0,
Debug = 1,
Warning = 2,
Error = 3
}
export declare class NCLog {
static v: (...data: any[]) => void;
static d: (...data: any[]) => void;
static w: (...data: any[]) => void;
static e: (...data: any[]) => void;
static assert: (condition?: boolean | undefined, ...data: any[]) => void;
static trace: (...data: any[]) => void;
static setLogLevel(level: NCLogLevel): void;
}