UNPKG

node-bithumb

Version:
13 lines (12 loc) 324 B
import { IBithumbResponse } from './bithumb-response.interface'; interface ITransactionHistory { transaction_date: string; type: string; units_traded: string; price: string; total: string; } export interface IGetTransactionHistory extends IBithumbResponse { data: ITransactionHistory[]; } export {};