cecon-interfaces
Version:
Interfaces de Projetos Cecon
16 lines (15 loc) • 388 B
TypeScript
import { BinanceStatus, SpreadAmountMode } from '../enums';
export interface IGlobalSettingBinance {
id: string;
key: string;
rate: IGlobalSettingBinanceRate;
}
export interface IGlobalSettingBinanceRate {
amount: number;
priceBrl: number;
priceUsd: number;
spread: number;
spreadMode: SpreadAmountMode;
status: BinanceStatus;
timestamp: string;
}