DebugLogger.d.ts 211 B

1234567
  1. export declare class DebugLogger {
  2. readonly isEnabled: boolean;
  3. readonly data: any;
  4. constructor(isEnabled?: boolean);
  5. add(key: string, value: any): void;
  6. save(file: string): Promise<void>;
  7. }