UNPKG

bybit-api

Version:

Complete & robust Node.js SDK for Bybit's REST APIs and WebSockets, with TypeScript & strong end to end tests.

14 lines (13 loc) 458 B
export interface WebsocketTopicSubscriptionConfirmationEvent { op: 'subscribe'; req_id: string; conn_id: string; ret_msg: string; success: boolean; } export interface WebsocketSucceededTopicSubscriptionConfirmationEvent extends WebsocketTopicSubscriptionConfirmationEvent { success: true; } export interface WebsocketFailedTopicSubscriptionConfirmationEvent extends WebsocketTopicSubscriptionConfirmationEvent { success: false; }