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

    Type Alias ProgressionPreset

    A named chord-progression preset expressed in scale degrees.

    type ProgressionPreset = {
        id: string;
        name: string;
        degrees: ProgressionDegree[];
        functional: ProgFunction;
        styles: ProgStyle[];
    }
    Index
    id: string
    name: string

    The chord roots, in order, as ProgressionDegree codes: 1..7 for the key's own scale degrees, counted as a musician counts them, and BORROWED_DEGREES for the borrowed ones.

    functional: ProgFunction
    styles: ProgStyle[]