bybit-api-gnome
Version:
Forked for Lick Hunter, Complete & robust node.js SDK for Bybit's REST APIs and WebSockets v5, with TypeScript & integration tests.
10 lines (9 loc) • 337 B
TypeScript
export type LogParams = null | any;
export declare const DefaultLogger: {
silly: (...params: LogParams) => void;
debug: (...params: LogParams) => void;
notice: (...params: LogParams) => void;
info: (...params: LogParams) => void;
warning: (...params: LogParams) => void;
error: (...params: LogParams) => void;
};