bug: fix build issues, fix datatypes

This commit is contained in:
2025-12-04 13:05:07 -05:00
parent 54d8c96c7f
commit 4a1b5bfc24
12 changed files with 155 additions and 58 deletions

View File

@@ -1,6 +1,6 @@
import WebSocket from 'ws';
import { EventEmitter } from 'events';
import { PriceIndex, WebSocketMessage, HistoricalData } from '../shared/types';
import { PriceIndex, WebSocketMessage, HistoricalData } from '../shared/types.js';
export class WebSocketClient extends EventEmitter {
private ws: WebSocket | null = null;