RPE Chart Utils
    Preparing search index...

    Type Alias Beat

    Beat: [number, number, number]

    A beat position encoded as a rational number [measure, numerator, denominator].

    The actual beat value is measure + numerator / denominator.

    // Beat 0
    const zero: Beat = [0, 0, 1];
    // Beat 2.5 (2 + 1/2)
    const twoAndHalf: Beat = [2, 1, 2];
    // Beat 4.75 (4 + 3/4)
    const fourAndThreeQuarters: Beat = [4, 3, 4];