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

    Interface CompanionFeedbackAdvancedEvent<TOptions>

    Extended information for execution of an advanced feedback

    interface CompanionFeedbackAdvancedEvent<
        TOptions extends CompanionOptionValues = CompanionOptionValues,
    > {
        controlId: string;
        feedbackId: string;
        id: string;
        image?: { height: number; width: number };
        options: TOptions;
        previousOptions: TOptions | null;
        type: "boolean" | "value" | "advanced";
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    controlId: string

    The unique id for the location of this feedback

    feedbackId: string

    The id of the feedback definition

    id: string

    The unique id for this feedback

    image?: { height: number; width: number }

    If control supports an imageBuffer, the dimensions the buffer should be

    options: TOptions

    The user selected options for the feedback

    previousOptions: TOptions | null

    The old user selected options from the previous execution of the feedback

    type: "boolean" | "value" | "advanced"

    The type of the feedback