UNPKG

@stacksjs/clapp

Version:

A toolkit for building CLI prompts in TypeScript.

17 lines 460 B
import type { CommonOptions } from './common'; /** * Renders a log which clears on success and remains on failure */ export declare function taskLog(opts: TaskLogOptions): void; export declare interface TaskLogOptions extends CommonOptions { title: string limit?: number spacing?: number retainLog?: boolean } export declare interface TaskLogMessageOptions { raw?: boolean } export declare interface TaskLogCompletionOptions { showLog?: boolean }