// Type definitions for log-update 2.0 // Project: https://github.com/sindresorhus/log-update#readme // Definitions by: BendingBender // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// export = logUpdate; declare function logUpdate(...text: string[]): void; declare namespace logUpdate { function clear(): void; function done(): void; const stderr: typeof logUpdate; function create(stream: NodeJS.WritableStream): typeof logUpdate; }