UNPKG
@exchanges/binance
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.3
Exchange provider for Binance API
@exchanges/binance
/
build
/
api
/
coinMFutures
/
accountTrades
/
cancelAllOpenOrders.d.ts
7 lines
(6 loc)
•
268 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
BinanceSignedClient
}
from
'../../../clients'
;
export
interface
CancelAllOpenOrdersResponse
{
code
:
number
;
msg
:
string
; }
export
declare
function
cancelAllOpenOrders
(
client
:
BinanceSignedClient
,
symbol
:
string
):
Promise
<
CancelAllOpenOrdersResponse
>;