blessed-components - v1.20.0
    Preparing search index...

    Interface ProgressBarCharacters

    Character pair used to draw a progress track.

    Use ASCII characters when the target terminal cannot display Unicode block glyphs reliably.

    const asciiCharacters: ProgressBarCharacters = {
    filled: '#',
    empty: '-',
    };
    interface ProgressBarCharacters {
        empty: string;
        filled: string;
    }
    Index

    Properties

    Properties

    empty: string

    Character repeated for unfilled track cells.

    filled: string

    Character repeated for filled track cells.