Currency/price formatting configuration.

interface AsukaPriceFormatConfig {
    code?: string;
    decimalSeparator?: string;
    precision?: number;
    priceFormat?: string;
    symbol?: string;
    thousandSeparator?: string;
    trimZeros?: boolean;
}

Properties

code?: string
decimalSeparator?: string
precision?: number
priceFormat?: string
symbol?: string
thousandSeparator?: string
trimZeros?: boolean