| 1234567891011121314151617 |
- /**
- * 事件key
- */
- export enum EventKey {
- quotePushNotify, // 行情推送通知
- quoteServerReconnectNotify, // 行情服务重连成功通知
- logoutNotify, // 用户登出通知
- moneyChangedNotify, // 资金变动通知
- }
- /**
- * 事件消息
- */
- export interface EventMessage {
- keys: (keyof typeof EventKey)[];
- callback: (data: unknown) => void;
- }
|