kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
12 lines (11 loc) • 436 B
TypeScript
import { Transport } from '../../internal/interfaces/transport';
import { VIPLendingAPI } from '../viplending/viplending/api_vip_lending';
export interface VIPLendingService {
getVIPLendingApi(): VIPLendingAPI;
}
export declare class VIPLendingServiceImpl implements VIPLendingService {
private readonly transport;
private readonly vIPLending;
constructor(transport: Transport);
getVIPLendingApi(): VIPLendingAPI;
}