| 466 | // TODO: Add a runtime check for this |
| 467 | |
| 468 | interface HandlerCallbackOptions extends CallbackOptions { |
| 469 | handler: (doc: YDoc) => void | Promise<void>; |
| 470 | url?: never; |
| 471 | } |
| 472 | |
| 473 | interface UrlCallbackOptions extends CallbackOptions { |
| 474 | handler?: never; |
nothing calls this directly
no outgoing calls
no test coverage detected