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

    Type Alias ProgressionData

    The plain form of a Progression: the chords as plain data, and the carried key as its own plain data when the progression has one.

    type ProgressionData = {
        chords: ChordData[];
        key: KeyData | undefined;
    }
    Index
    chords: ChordData[]
    key: KeyData | undefined