interface ITypedMoney {
    centAmount: number;
    currencyCode: string;
    fractionDigits?: number;
    type: string;
}

Hierarchy (View Summary)

Properties

centAmount: number
currencyCode: string

The currency code compliant to ISO 4217.

fractionDigits?: number
type: string