10 lines
310 B
TypeScript
10 lines
310 B
TypeScript
|
declare class Logging {
|
||
|
static enableDebug: boolean;
|
||
|
static disableWarnings: boolean;
|
||
|
static disableErrors: boolean;
|
||
|
private static TAG;
|
||
|
static info(message?: any, ...optionalParams: any[]): void;
|
||
|
static warn(message?: any, ...optionalParams: any[]): void;
|
||
|
}
|
||
|
export = Logging;
|