UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

21 lines (19 loc) 233 B
/** * Currency array */ export const Currencies = [ "AUD", "CAD", "CNY", "EUR", "GBP", "HKD", "JPY", "NZD", "SGD", "USD" ] as const; /** * Currency type */ export type Currency = (typeof Currencies)[number];