(
private readonly db: Database,
private readonly options: Required<Pick<ServerOptions, "ignore">> &
Pick<ServerOptions, "afterApply" | "beforeFetch">,
)
| 88 | |
| 89 | class SyncRPCServer extends RpcTarget implements SyncRPC { |
| 90 | constructor( |
| 91 | private readonly db: Database, |
| 92 | private readonly options: Required<Pick<ServerOptions, "ignore">> & |
| 93 | Pick<ServerOptions, "afterApply" | "beforeFetch">, |
| 94 | ) { |
| 95 | super(); |
| 96 | trackStub(this); |
| 97 | } |
| 98 | |
| 99 | [Symbol.dispose](): void { |
| 100 | untrackStub(this); |
nothing calls this directly
no test coverage detected