UNPKG

node-bithumb

Version:
14 lines (13 loc) 325 B
import { IBithumbResponse } from './bithumb-response.interface'; interface IAccount { created: number; account_id: string; order_currency: string; payment_currency: string; trade_fee: string; balance: string; } export interface IPostAccount extends IBithumbResponse { data: IAccount; } export {};