wexen
Version:
10 lines (9 loc) • 493 B
TypeScript
import { None, TerminalColor } from '../index.ts';
export declare const logger: {
error: (message: string, color?: TerminalColor | None) => void;
warn: (message: string, color?: TerminalColor | None) => void;
info: (message: string, color?: TerminalColor | None) => void;
verbose: (message: string, color?: TerminalColor | None) => void;
debug: (message: string, color?: TerminalColor | None) => void;
silly: (message: string, color?: TerminalColor | None) => void;
};