UNPKG
symbols-of-currency
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Getting the currency symbol by currency code, country name or currency name
symbols-of-currency
/
dist
/
symbols-of-currency.d.ts
4 lines
(3 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
export
declare
function
getSymbolByCode
(
code
:
string
,
country
?:
string
):
string
|
undefined
;
export
declare
function
getSymbolByCountry
(
country
:
string
):
string
|
undefined
;
export
declare
function
getSymbolByCurrencyName
(
name
:
string
,
country
?:
string
):
string
|
undefined
;