@gks101/numtowords - v1.0.3
    Preparing search index...

    Interface CurrencyLocaleRules

    Locale-specific rules for rendering currency words.

    interface CurrencyLocaleRules {
        hideZeroMinor?: boolean;
        joinWord?: string;
        major: CurrencyUnitForms;
        minor: CurrencyUnitForms;
        minorBase?: 10 | 100 | 1000;
    }
    Index

    Properties

    hideZeroMinor?: boolean

    Omit minor section when value is zero.

    true
    
    joinWord?: string

    Word joining major and minor parts.

    "and"
    

    Major unit forms (e.g. dollar/dollars, rupee/rupees).

    Minor unit forms (e.g. cent/cents, paisa/paise).

    minorBase?: 10 | 100 | 1000

    Minor unit scale base.

    100