/** * @wioex/stream-sdk * * WebSocket streaming SDK for real-time WioEX market data * * @example * ```typescript * import { WioexStreamClient } from '@wioex/stream-sdk'; * * const client = new WioexStreamClient({ * apiKey: 'your-api-key', * maxSymbols: 8 * }); * * client.on('ticker', (data) => { * console.log(`${data.ticket}: $${data.last}`); * }); * * client.connect(); * client.subscribe(['AAPL', 'TSLA', 'GOOGL']); * ``` */ export { WioexStreamClient } from './WioexStreamClient'; export * from './types';