12 lines
259 B
TypeScript
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;
|
|
}
|