added currency to types

This commit is contained in:
Giulio De Pasquale 2020-12-19 21:52:52 +00:00
parent edbe6002df
commit 7b91111b7d

View File

@ -33,7 +33,12 @@ export type PositionCloseMessage = {
}
export type CurrencyPair = {
base: string,
quote: string
base: Currency,
quote: Currency
}
export type Currency = {
name: string,
short_name: string
}