interface ICliTextAnimator {
    hide: () => void;
    isRunning: boolean;
    show: (text?: string) => void;
    showText: (text: string, options?: CliTextAnimatorOptions) => void;
}

Hierarchy (View Summary)

Properties

hide: () => void

Hide the progress bar

isRunning: boolean

Indicates if the progress bar is running

show: (text?: string) => void

Show the progress bar

showText: (text: string, options?: CliTextAnimatorOptions) => void

Show animated text in a typing and erasing effect.

Type declaration