bitget-api
Version:
Complete Node.js & JavaScript SDK for Bitget V1-V3 REST APIs & WebSockets, with TypeScript & end-to-end tests.
16 lines (15 loc) • 335 B
TypeScript
export interface APIResponse<T> {
code: string;
requestTime: number;
msg: 'success' | string;
data: T;
}
export interface VIPFeeRate {
level: number;
dealAmount: string;
assetAmount: string;
takerFeeRate?: string;
makerFeeRate?: number;
withdrawAmount: string;
withdrawAmountUSDT: string;
}