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

    Interface CompanionPresetSection<TManifest>

    interface CompanionPresetSection<
        TManifest extends InstanceTypes = InstanceTypes,
    > {
        definitions: string[] | CompanionPresetGroup<TManifest>[];
        description?: string;
        id: string;
        keywords?: string[];
        name: string;
    }

    Type Parameters

    Index

    Properties

    definitions: string[] | CompanionPresetGroup<TManifest>[]

    The definitions of presets or groups in this section This can either be an array of groups, or a direct array of preset references, which will be shown without grouping

    description?: string

    A description of the section, to be shown above the presets

    id: string

    Unique identifier for the preset section This should be stable across updates to the presets

    keywords?: string[]

    Keywords for the preset This is extra search terms to allow users to find the right preset

    name: string

    The name of the section of presets, to be shown above the presets