websocket.ts 289 B

12345678
  1. export const SocketNamespace = {
  2. UpdateDescCount: 'UpdateDsecCount',
  3. } as const;
  4. export type SocketNamespace = typeof SocketNamespace[keyof typeof SocketNamespace];
  5. type PagePath = string;
  6. type DescendantCount = number;
  7. export type UpdateDescCountData = Map<PagePath, DescendantCount>;