interface CurrencyOptions {
    currencyDisplay?: CurrencyDisplay;
    currencyIsoCode: string;
    currencySign?: CurrencySign;
    locale: string;
    maximumFractionDigits?: number;
    minimumFractionDigits?: number;
    notation?: Notation;
}

Hierarchy

  • NumberOptionsBasic
    • CurrencyOptions

Properties

currencyDisplay?: CurrencyDisplay
currencyIsoCode: string
currencySign?: CurrencySign
locale: string
maximumFractionDigits?: number
minimumFractionDigits?: number
notation?: Notation