@tucmc/hazel
Version:
Clubs Data Processing Framework
16 lines (15 loc) • 493 B
TypeScript
import type { Ora } from 'ora';
export declare class Debugger {
private readonly unit;
constructor(unit: string);
private static debugTimestamp;
info(message: string): void;
loadingInfo(loadingText: string): Ora;
dump(data: any): void;
table(data: any): void;
err(message: any): void;
warn(message: string): void;
pauseForQuestion(question: string): string;
pauseForYNQuestion(question?: string): boolean;
pauseForAnyKey(text?: string): void;
}