UNPKG

kucoin-universal-sdk

Version:
12 lines (11 loc) 436 B
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; }