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

    Interface ProgressBarOptions

    Options accepted by the Blessed progressBar adapter.

    interface ProgressBarOptions {
        box?: ProgressBarBoxOptions;
        data: ProgressBarData;
        parent: Node;
    }
    Index

    Properties

    Properties

    Optional Blessed box configuration.

    Position, dimensions, style, visibility, and other regular box options can be supplied here.

    Data passed to the pure renderProgressBar renderer.

    parent: Node

    Blessed node that receives the created box as a child.

    Usually this is a Screen or another BoxElement.