smartdebug/dist/index.d.ts
2017-09-19 17:58:59 +02:00

12 lines
259 B
TypeScript

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;
}