@audiotool/nexus - v0.0.17
    Preparing search index...

    Type Alias GmDrum

    Catalog entry describing a single General MIDI drum kit.

    One entry per GS-standard kit slot (8 total: programs 0, 8, 16, 24, 25, 32, 40, 48).

    type GmDrum = {
        category: string;
        description?: string;
        displayName: string;
        id: string;
        program: GmDrumProgram;
        slug: GmDrumSlug;
        tags: readonly string[];
    }
    Index

    Properties

    category: string

    Always "Drums" for GM drum kits; kept for parity with GmInstrument.

    description?: string

    Short human-readable description, when available.

    displayName: string

    User-facing name as shown in the DAW preset browser.

    id: string

    Backend preset id (presets/<uuid>); also usable with PresetsAPI.get.

    program: GmDrumProgram

    GM program number. Pass to PresetsAPI.getDrums.

    Stable kebab-case slug, also accepted by PresetsAPI.getDrums.

    tags: readonly string[]

    Search tags as shown in the DAW preset browser.