import 'regenerator-runtime'; export interface Alert { symbol: string; price: number; } export interface AlertMessageBack { type: 'ALERT_UP' | 'ALERT_DOWN'; symbol: string; price: number; lastPrice: number; } export interface SetAlertsMessage { type: 'SET_ALERTS'; alerts: Alert[]; } export interface InitMessage { type: 'INIT'; allSymbols: string[]; isTestnet?: boolean; } export default class Work extends Worker { constructor(); } //# sourceMappingURL=futuresAlerts.worker.d.ts.map