Files
smartdebug/dist/index.d.ts

13 lines
308 B
TypeScript
Raw Normal View History

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