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

    Interface CompanionButtonPresetDefinition

    The definition of a press button preset

    interface CompanionButtonPresetDefinition {
        category: string;
        feedbacks: CompanionPresetFeedback[];
        name: string;
        options?: CompanionButtonPresetOptions;
        previewStyle?: Partial<CompanionButtonStyleProps>;
        steps: CompanionButtonStepActions[];
        style: CompanionButtonStyleProps;
        type: "button";
    }
    Index

    Properties

    category: string

    The category of this preset, for grouping

    The feedbacks on the button

    name: string

    The name of this preset

    Options for this preset

    previewStyle?: Partial<CompanionButtonStyleProps>

    Preview style for preset, will be used in GUI for preview

    The base style of this preset, this will be copied to the button

    type: "button"

    The type of this preset