binance-api-node
Advanced tools
Comparing version 0.10.9 to 0.10.10
@@ -313,13 +313,15 @@ // tslint:disable:interface-name | ||
) => ReconnectingWebSocketHandler | ||
user: (callback: (msg: UserDataStreamEvent) => void) => Function | ||
marginUser: (callback: (msg: OutboundAccountInfo | ExecutionReport) => void) => Function | ||
futuresUser: (callback: (msg: OutboundAccountInfo | ExecutionReport) => void) => Function | ||
user: (callback: (msg: UserDataStreamEvent) => void) => Promise<ReconnectingWebSocketHandler> | ||
marginUser: (callback: (msg: OutboundAccountInfo | ExecutionReport) => void) => Promise<ReconnectingWebSocketHandler> | ||
futuresUser: (callback: (msg: OutboundAccountInfo | ExecutionReport) => void) => Promise<ReconnectingWebSocketHandler> | ||
} | ||
export type ReconnectingWebSocketHandler = (options?: { | ||
keepClosed: boolean | ||
fastClose: boolean | ||
delay: number | ||
}) => void | ||
export type WebSocketCloseOptions = { | ||
delay: number; | ||
fastClose: boolean; | ||
keepClosed: boolean; | ||
} | ||
export type ReconnectingWebSocketHandler = (options?: WebSocketCloseOptions) => void | ||
export enum CandleChartInterval { | ||
@@ -326,0 +328,0 @@ ONE_MINUTE = '1m', |
{ | ||
"name": "binance-api-node", | ||
"version": "0.10.9", | ||
"version": "0.10.10", | ||
"description": "A node API wrapper for Binance", | ||
@@ -5,0 +5,0 @@ "main": "dist", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
111632
1901