Type Alias RomanNumeralAscii

RomanNumeralAscii:
    | "I"
    | "V"
    | "X"
    | "L"
    | "C"
    | "D"
    | "M"

Allowable Roman numeral characters (ASCII, uppercase only).