You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
375 B

export declare class Log {
_disabled?: boolean;
constructor(disabled?: boolean);
get disabled(): boolean;
set disabled(val: boolean);
log: (message?: any, ...optionalParams: any[]) => void | (() => void);
error: (message?: any, ...optionalParams: any[]) => void | (() => void);
logger: (message?: string) => void;
}
export declare const log: Log;