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

    Type Alias RomanExplanation

    A numeral with the reasoning behind it.

    type RomanExplanation = {
        roman: string;
        rationale: string;
        alternatives: RejectedCandidate[];
    }
    Index
    roman: string

    The numeral, exactly as chordToRoman renders it.

    rationale: string

    How the numeral was arrived at: the degree, the quality, and the bass.

    alternatives: RejectedCandidate[]

    The spellings the options turned down, empty unless the alternatives option of ExplainRomanOptions asked for them.