node-bithumb
Version:
NodeJS wrapped for Bithumb API
17 lines (16 loc) • 428 B
TypeScript
import { IBithumbResponse } from './bithumb-response.interface';
import { currencyType } from './currency-i18n.interface';
interface IOrder {
order_currency: string;
payment_currency: currencyType;
order_id: string;
order_data: string;
type: string;
units: string;
units_remaining: string;
price: string;
}
export interface IPostOrders extends IBithumbResponse {
data: IOrder[];
}
export {};