@hebcal/core
    Preparing search index...

    Type Alias MonthName

    MonthName:
        | "Nisan"
        | "Iyyar"
        | "Sivan"
        | "Tamuz"
        | "Av"
        | "Elul"
        | "Tishrei"
        | "Cheshvan"
        | "Kislev"
        | "Tevet"
        | "Sh'vat"
        | "Adar"
        | "Adar I"
        | "Adar II"

    Transliterated Hebrew month names, as returned by getMonthName and HDate.getMonthName.

    These strings double as the message IDs used for translation, so they can be passed straight to Locale.gettext.

    import {Locale} from '@hebcal/hdate';
    const name: MonthName = 'Cheshvan';
    Locale.gettext(name, 'he'); // 'חֶשְׁוָן'