| 1293 | |
| 1294 | /** @internal */ |
| 1295 | export interface MinimalDocStore<R extends UnknownRecord> { |
| 1296 | get(id: string): UnknownRecord | undefined |
| 1297 | set(id: string, record: R): void |
| 1298 | delete(id: string): void |
| 1299 | } |
| 1300 | |
| 1301 | /** @internal */ |
| 1302 | export class PresenceStore<R extends UnknownRecord> implements MinimalDocStore<R> { |
no outgoing calls
no test coverage detected
searching dependent graphs…