@relisa/gui4vega - v0.1.0
    Preparing search index...

    Interface VegaSignal

    Represents a signal in a Vega specification, containing its name and value.

    interface VegaSignal {
        name: string;
        value: unknown;
    }
    Index

    Properties

    Properties

    name: string

    The unique name of the signal to reference it within the Vega specification.

    value: unknown

    The value of the signal, which can be of any type.