websocket.ts 224 B

123456
  1. export const GlobalSocketEventName = {
  2. // YDoc
  3. YDocSync: 'ydoc:sync',
  4. YDocSyncError: 'ydoc:sync:error',
  5. } as const;
  6. export type GlobalSocketEventName = typeof GlobalSocketEventName[keyof typeof GlobalSocketEventName];