smartdebug/dist/index.d.ts

16 lines
426 B
TypeScript
Raw Normal View History

2017-09-18 13:19:18 +00:00
export declare class SmartDebug {
2017-09-18 15:53:23 +00:00
debugLogFunction: any;
2017-09-18 13:19:18 +00:00
private debugEnabled;
/**
* enables debugging output
*/
2017-09-19 15:48:56 +00:00
enableDebugging(debugLogFunction?: {
(message?: any, ...optionalParams: any[]): void;
(message?: any, ...optionalParams: any[]): void;
}): void;
2017-09-18 13:19:18 +00:00
/**
* logs a message based on the contraints of the SmartDebug instance
*/
log(logObject: any): void;
}