@bbx-audio/nectar
    Preparing search index...

    Interface IBooleanParameter

    Describes a boolean-based parameter object, exposing the additional functionality to toggle the internal value of the parameter.

    interface IBooleanParameter {
        config: IBooleanParameterConfig;
        type: Boolean;
        getValue(): boolean;
        resetValue(source?: ParameterChangeSource): void;
        setValue(value: boolean, source?: ParameterChangeSource): void;
        subscribe(listener: ParameterListener<boolean>): () => void;
        toggle(source?: ParameterChangeSource): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    The particular configuration of this parameter.

    type: Boolean

    The particular parameter type of this parameter.

    Methods