type alias Currency

Represents a country–currency mapping.

A single entry linking a country/region to its official currency.

Examples

Example 1

const usd: Currency = {
  country: "United States",
  currencyName: "US dollar",
  currencyCode: "USD",
};

Properties

Usage

import { type Currency } from ".";