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 {};
