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

    Type Alias Tuplet

    A tuplet ratio: actual written notes played in the time of normal ones — { actual: 3, normal: 2 } for a triplet, { actual: 5, normal: 4 } for a quintuplet.

    type Tuplet = {
        actual: number;
        normal: number;
    }
    Index
    actual: number

    How many notes are written.

    normal: number

    How many of the same base value they occupy.