From 60db4f93e0aa3054278a78165acbe19213866a84 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Wed, 16 Dec 2020 18:42:13 +0000 Subject: [PATCH] defined CurrencyPair --- websrc/components/App.tsx | 2 +- websrc/types.ts | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/websrc/components/App.tsx b/websrc/components/App.tsx index 035ef56..f772348 100644 --- a/websrc/components/App.tsx +++ b/websrc/components/App.tsx @@ -81,7 +81,7 @@ class App extends Component<{}, AppState> { Rustico - BfxBot - + diff --git a/websrc/types.ts b/websrc/types.ts index 31146c8..add715e 100644 --- a/websrc/types.ts +++ b/websrc/types.ts @@ -32,3 +32,8 @@ export type PositionCloseMessage = { position_id: number, } +export type CurrencyPair = { + base: string, + quote: string +} +