16 lines
426 B
TypeScript
16 lines
426 B
TypeScript
export declare class SmartDebug {
|
|
debugLogFunction: any;
|
|
private debugEnabled;
|
|
/**
|
|
* enables debugging output
|
|
*/
|
|
enableDebugging(debugLogFunction?: {
|
|
(message?: any, ...optionalParams: any[]): void;
|
|
(message?: any, ...optionalParams: any[]): void;
|
|
}): void;
|
|
/**
|
|
* logs a message based on the contraints of the SmartDebug instance
|
|
*/
|
|
log(logObject: any): void;
|
|
}
|