UNPKG

@wwa/single-line-log

Version:

Keep writing to the same line in the terminal. Very useful when you write progress bars, or a status message during longer operations

8 lines (6 loc) 157 B
export interface SingleLineLog { (...args: unknown): void; clear(): void; } export const stdout: SingleLineLog; export const stderr: SingleLineLog;