@melonproject/ea-bitfinex
Version:
Integration for the Bitfinex API.
9 lines (8 loc) • 344 B
TypeScript
import { OrderbookObserver, Symbol } from '@melonproject/ea-common';
import { SubscriptionOptionsWithoutSymbol } from '../../api/public/websocket/book';
export interface WatchOptions {
length?: SubscriptionOptionsWithoutSymbol['length'];
base: Symbol;
quote: Symbol;
}
export declare const observe: OrderbookObserver<WatchOptions>;