@libraz/libcantus - v0.9.3
    Preparing search index...

    Type Alias ChordTimeline

    A beat-indexed sequence of chord segments.

    type ChordTimeline = {
        at: (beat: number) => ChordData | null;
        segments: ChordSegment[];
    }
    Index
    at: (beat: number) => ChordData | null

    The chord sounding at a beat, or null when no segment covers it.

    segments: ChordSegment[]