@companion-module/base
    Preparing search index...

    Interface CompanionSimplePresetLocalVariable

    The configuration of a simple local variable in a preset

    interface CompanionSimplePresetLocalVariable {
        headline?: string;
        startupValue: CompanionVariableValue;
        variableName: string;
        variableType: "simple";
    }
    Index

    Properties

    headline?: string

    User editable description/comment for the local variable. Intended to describe the purpose/intent of the local variable.

    The value of the variable at Companion startup

    variableName: string

    The name of the local variable

    variableType: "simple"

    The type of variable this is Currently only 'simple' is supported