UNPKG

bybit-api

Version:

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

8 lines (7 loc) 313 B
export type LogParams = null | any; export declare const DefaultLogger: { /** Ping/pong events and other raw messages that might be noisy. Enable this while troubleshooting. */ trace: (..._params: LogParams) => void; info: (...params: LogParams) => void; error: (...params: LogParams) => void; };