UNPKG

bitget-api

Version:

Complete Node.js & JavaScript SDK for Bitget V1-V3 REST APIs & WebSockets, with TypeScript & end-to-end tests.

9 lines (8 loc) 363 B
export type LogParams = null | any; export type DefaultLogger = typeof DefaultLogger; 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; };