node-bithumb
Version:
NodeJS wrapped for Bithumb API
13 lines (12 loc) • 324 B
TypeScript
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 {};