@libraz/libcantus - v1.1.0
    Preparing search index...

    Type Alias KickSlot

    One onset of a kick figure.

    A slot with no probability is part of the figure itself and always sounds. One with a probability is where the rhythmic dial reaches the kick: the draw is fixed by position and leaned on by the dial, so raising the dial fills slots in without emptying any that were already there.

    type KickSlot = {
        step: number;
        probability?: number;
        slot?: string;
        barParity?: 0 | 1;
        sections?: Section[];
    }
    Index
    step: number

    Sixteenth index within the bar, 0..15.

    probability?: number

    Chance the slot is taken before the dial leans on it.

    slot?: string

    Draw address for the slot; slots that may sound must name one.

    barParity?: 0 | 1

    Restrict the slot to bars of one parity, for a two-bar figure.

    sections?: Section[]

    Sections the slot is added in; absent means every section.