smartdebug/dist/index.d.ts

12 lines
259 B
TypeScript
Raw Normal View History

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