tailwind #9

Manually merged
peperunas merged 157 commits from tailwind into master 2020-12-28 18:38:52 +00:00
Showing only changes of commit 7b91111b7d - Show all commits

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
}