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
/
spotMarginSavingsMaining
/
BSwap
/
listAllSwapPools.d.ts
8 lines
(7 loc)
•
272 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
BinanceSignedClient
}
from
'../../../clients'
;
export
interface
ListAllSwapPoolsResponse
{
poolId
:
number
;
poolName
:
string
;
assets
:
string
[]; }
export
declare
function
listAllSwapPools
(
client
:
BinanceSignedClient
):
Promise
<
ListAllSwapPoolsResponse
>;