speech-rule-engine
Version:
A standalone speech rule engine for XML structures, based on the original engine from ChromeVox.
16 lines (15 loc) • 427 B
TypeScript
export declare class Debugger {
private static instance;
private isActive_;
private outputFunction_;
private fileHandle;
private stream_;
static getInstance(): Debugger;
init(opt_file?: string): any;
output(...args: any[]): void;
generateOutput(func: () => string[]): void;
exit(callback?: () => any): void;
private constructor();
private startDebugFile_;
private output_;
}