thedesk/app/node_modules/builder-util/out/DebugLogger.d.ts

8 lines
211 B
TypeScript
Raw Normal View History

2019-09-13 00:38:13 +10:00
export declare class DebugLogger {
readonly isEnabled: boolean;
readonly data: any;
constructor(isEnabled?: boolean);
add(key: string, value: any): void;
save(file: string): Promise<void>;
}