diff options
author | Fabio Berger <me@fabioberger.com> | 2018-04-18 14:22:20 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-04-18 14:22:20 +0800 |
commit | 64c5c5eb409683d152744a440735ff548fe57ead (patch) | |
tree | 49cde91246005830566048f7f8bab0bcdbe7ea0a /packages/connect/src | |
parent | 7a8edb5018acaf7aaf49ebefd8b3afec713a19eb (diff) | |
download | dexon-sol-tools-64c5c5eb409683d152744a440735ff548fe57ead.tar dexon-sol-tools-64c5c5eb409683d152744a440735ff548fe57ead.tar.gz dexon-sol-tools-64c5c5eb409683d152744a440735ff548fe57ead.tar.bz2 dexon-sol-tools-64c5c5eb409683d152744a440735ff548fe57ead.tar.lz dexon-sol-tools-64c5c5eb409683d152744a440735ff548fe57ead.tar.xz dexon-sol-tools-64c5c5eb409683d152744a440735ff548fe57ead.tar.zst dexon-sol-tools-64c5c5eb409683d152744a440735ff548fe57ead.zip |
Fix comments
Diffstat (limited to 'packages/connect/src')
-rw-r--r-- | packages/connect/src/types.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/connect/src/types.ts b/packages/connect/src/types.ts index 5c344e328..b0467f22a 100644 --- a/packages/connect/src/types.ts +++ b/packages/connect/src/types.ts @@ -15,14 +15,14 @@ export interface OrderbookChannel { close: () => void; } -/* +/** * heartbeatInterval: Interval in milliseconds that the orderbook channel should ping the underlying websocket. Default: 15000 */ export interface WebSocketOrderbookChannelConfig { heartbeatIntervalMs?: number; } -/* +/** * baseTokenAddress: The address of token designated as the baseToken in the currency pair calculation of price * quoteTokenAddress: The address of token designated as the quoteToken in the currency pair calculation of price * snapshot: If true, a snapshot of the orderbook will be sent before the updates to the orderbook |