UNPKG
currencies.json
Version:
latest (1.1.0)
1.1.0
1.0.2
1.0.1
1.0.0
Full list of currencies
github.com/leequixxx/currencies.json
leequixxx/currencies.json
currencies.json
/
index.d.ts
12 lines
(10 loc)
•
228 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
interface
Currency
{
name
:
string
;
symbol
:
string
;
symbolNative
:
string
;
decimalDigits
:
number
;
rounding
:
number
;
code
:
string
;
namePlural
:
string
; }
export
declare
const
currencies
:
Currency
[];