Interface ProgressOptions

Options for the progress bar.

interface ProgressOptions {
    clear?: boolean;
    complete?: string;
    incomplete?: string;
    total: number;
    width?: number;
}

Properties

clear?: boolean
complete?: string
incomplete?: string
total: number
width?: number