debugger.d.ts 427 B

123456789101112131415
  1. export declare class Debugger {
  2. private static instance;
  3. private isActive_;
  4. private outputFunction_;
  5. private fileHandle;
  6. private stream_;
  7. static getInstance(): Debugger;
  8. init(opt_file?: string): any;
  9. output(...args: any[]): void;
  10. generateOutput(func: () => string[]): void;
  11. exit(callback?: () => any): void;
  12. private constructor();
  13. private startDebugFile_;
  14. private output_;
  15. }