| 18 | import { Observable, Subscription, Observer } from "zen-observable-ts"; |
| 19 | |
| 20 | export interface YGraphConfig<TSchema extends GraphSchema> { |
| 21 | schema: TSchema; |
| 22 | doc: Y.Doc; |
| 23 | } |
| 24 | |
| 25 | export class YGraph<const TSchema extends GraphSchema> extends Graph<TSchema> { |
| 26 | #doc: Y.Doc; |
nothing calls this directly
no outgoing calls
no test coverage detected