added currency to types
This commit is contained in:
parent
edbe6002df
commit
7b91111b7d
@ -33,7 +33,12 @@ export type PositionCloseMessage = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export type CurrencyPair = {
|
export type CurrencyPair = {
|
||||||
base: string,
|
base: Currency,
|
||||||
quote: string
|
quote: Currency
|
||||||
|
}
|
||||||
|
|
||||||
|
export type Currency = {
|
||||||
|
name: string,
|
||||||
|
short_name: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user