interface.ts 391 B

1234567891011121314151617
  1. /**
  2. * 事件key
  3. */
  4. export enum EventKey {
  5. quotePushNotify, // 行情推送通知
  6. quoteServerReconnectNotify, // 行情服务重连成功通知
  7. logoutNotify, // 用户登出通知
  8. moneyChangedNotify, // 资金变动通知
  9. }
  10. /**
  11. * 事件消息
  12. */
  13. export interface EventMessage {
  14. keys: (keyof typeof EventKey)[];
  15. callback: (data: unknown) => void;
  16. }