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

    Type Alias CompanionPresetLayeredFeedback<TFeedbackManifest>

    CompanionPresetLayeredFeedback: {
        [K in keyof TFeedbackManifest]: {
            feedbackId: K;
            headline?: string;
            isInverted?: boolean;
            options: CompanionPresetOptionValues<TFeedbackManifest[K]["options"]>;
            styleOverrides: CompanionPresetFeedbackStyleOverride[];
        }
    }[keyof TFeedbackManifest]

    The configuration of an feedback in a preset

    Type Parameters