| 3 | import { Doc } from 'yjs' |
| 4 | |
| 5 | export interface WSSharedDoc extends Doc { |
| 6 | name: string |
| 7 | conns: Map<WebSocket.WebSocket, Set<number>> |
| 8 | awareness: awarenessProtocol.Awareness |
| 9 | getSubDoc(id: string): Doc | undefined |
| 10 | } |
| 11 | |
| 12 | export type ContentType = 'Array' | 'Map' | 'Text' | 'XmlFragment' |
no outgoing calls
no test coverage detected