sideshift-node-sdk
Version:
TypeScript Client for SideShift.ai API
15 lines (14 loc) • 557 B
TypeScript
import { AccountAPI, CreateCheckoutAPI, OrdersAPI, PairsAPI } from './api/private';
import { CheckoutAPI, CoinsAPI, ShiftsAPI, StatsAPI } from './api/public';
import { SideShiftConfig } from './types';
export declare class SideShiftClient {
readonly coins: CoinsAPI;
readonly shifts: ShiftsAPI;
readonly stats: StatsAPI;
readonly checkout: CheckoutAPI;
readonly pairs: PairsAPI;
readonly account: AccountAPI;
readonly orders: OrdersAPI;
readonly createCheckout: CreateCheckoutAPI;
constructor(config: SideShiftConfig);
}