Skip to content
This repository has been archived by the owner on Sep 9, 2023. It is now read-only.

Commit

Permalink
convert index to TS
Browse files Browse the repository at this point in the history
  • Loading branch information
bmancini55 committed Jun 18, 2021
1 parent 08c5fa4 commit 37740f1
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 114 deletions.
114 changes: 0 additions & 114 deletions src/index.js

This file was deleted.

57 changes: 57 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
// export core types
export { BasicClient } from "./BasicClient";
export { BasicMultiClient } from "./BasicMultiClient";
export { SmartWss } from "./SmartWss";
export { Watcher } from "./Watcher";

// export event types
export { Auction } from "./Auction";
export { BlockTrade } from "./BlockTrade";
export { Candle } from "./Candle";
export { CandlePeriod } from "./CandlePeriod";
export { Level2Point } from "./Level2Point";
export { Level2Snapshot } from "./Level2Snapshots";
export { Level2Update } from "./Level2Update";
export { Level3Point } from "./Level3Point";
export { Level3Snapshot } from "./Level3Snapshot";
export { Level3Update } from "./Level3Update";
export { Ticker } from "./Ticker";
export { Trade } from "./Trade";

// exportclients
export { BiboxClient as Bibox } from "./exchanges/BiboxClient";
export { BinanceClient as Binance } from "./exchanges/BinanceClient";
export { BinanceFuturesCoinmClient as BinanceFuturesCoinM } from "./exchanges/BinanceFuturesCoinmClient";
export { BinanceFuturesUsdtmClient as BinanceFuturesUsdtM } from "./exchanges/BinanceFuturesUsdtmClient";
export { BinanceJeClient as BinanceJe } from "./exchanges/BinanceJeClient";
export { BinanceUsClient as BinanceUs } from "./exchanges/BinanceUsClient";
export { BitfinexClient as Bitfinex } from "./exchanges/BitfinexClient";
export { BitflyerClient as Bitflyer } from "./exchanges/BitflyerClient";
export { BithumbClient as Bithumb } from "./exchanges/BithumbClient";
export { BitmexClient as BitMEX } from "./exchanges/BitmexClient";
export { BitstampClient as Bitstamp } from "./exchanges/BitstampClient";
export { BittrexClient as Bittrex } from "./exchanges/BittrexClient";
export { CexClient as Cex } from "./exchanges/CexClient";
export { CoinbaseProClient as CoinbasePro } from "./exchanges/CoinbaseProClient";
export { CoinexClient as Coinex } from "./exchanges/CoinexClient";
export { DeribitClient as Deribit } from "./exchanges/DeribitClient";
export { DigifinexClient as Digifinex } from "./exchanges/DigifinexClient";
export { ErisXClient as ErisX } from "./exchanges/ErisxClient";
export { FtxClient as Ftx } from "./exchanges/FtxClient";
export { FtxUsClient as FtxUs } from "./exchanges/FtxUsClient";
export { GateioClient as Gateio } from "./exchanges/GateioClient";
export { GeminiClient as Gemini } from "./exchanges/Geminiclient";
export { HitBtcClient as HitBTC } from "./exchanges/HitBtcClient";
export { HuobiClient as Huobi } from "./exchanges/HuobiClient";
export { HuobiFuturesClient as HuobiFutures } from "./exchanges/HuobiFuturesClient";
export { HuobiSwapsClient as HuobiSwaps } from "./exchanges/HuobiSwapsClient";
export { HuobiJapanClient as HuobiJapan } from "./exchanges/HuobiJapanClient";
export { HuobiKoreaClient as HuobiKorea } from "./exchanges/HuobiKoreaClient";
export { KucoinClient as Kucoin } from "./exchanges/KucoinClient";
export { KrakenClient as Kraken } from "./exchanges/KrakenClient";
export { LedgerXClient as LedgerX } from "./exchanges/LedgerXClient";
export { LiquidClient as Liquid } from "./exchanges/LiquidClient";
export { OKExClient as OKEx } from "./exchanges/OKExClient";
export { PoloniexClient as Poloniex } from "./exchanges/PoloniexClient";
export { UpbitClient as Upbit } from "./exchanges/UpbitClient";
export { ZbClient as Zb } from "./exchanges/ZbClient";

0 comments on commit 37740f1

Please sign in to comment.