UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

9 lines (8 loc) 217 B
/** * Currency array */ export declare const Currencies: readonly ["AUD", "CAD", "CNY", "EUR", "GBP", "HKD", "JPY", "NZD", "SGD", "USD"]; /** * Currency type */ export type Currency = (typeof Currencies)[number];