Money
Monetary amount with currency code (ISO 4217) and optional formatted string.
common
Install
$ npx shadcn@latest add @open-types/money
Source
export interface Money {
amount: number;
currency: string;
formatted?: string;
}
export interface Money {
amount: number;
currency: string;
formatted?: string;
}