This commit is contained in:
2017-09-18 15:19:18 +02:00
parent 1f09d67196
commit c269ac04cd
28 changed files with 579 additions and 2431 deletions

11
dist/index.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
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;
}