Add types for base/quote currency in trades interface

This commit is contained in:
Matthias 2022-04-10 09:54:40 +02:00
parent 06ba81c681
commit b76b912074

View File

@ -31,6 +31,8 @@ export interface Trade {
botName: string;
trade_id: number;
pair: string;
base_currency?: string;
quote_currency?: string;
is_open: boolean;
amount: number;
amount_requested?: number;