smartdebug/dist/index.d.ts

22 lines
478 B
TypeScript

export declare class SmartDebug {
private _debugEnabled;
constructor(debugTopic?: string);
readonly debugEnabled: boolean;
/**
* enables debugging output
*/
enableDebugging(): void;
/**
* disables debugging
*/
disableDebugging(): void;
/**
* logs a message based on the contraints of the SmartDebug instance
*/
log(logObject: any): void;
/**
* a function returning
*/
isDebugMode(): boolean;
}