(name: string)
| 940 | // against. |
| 941 | const touched: string[] = []; |
| 942 | const tripwire = (name: string): never => { |
| 943 | touched.push(name); |
| 944 | throw new Error(`sync.${name} must not be reached when sync: 'none'`); |
| 945 | }; |
| 946 | const sync: import("@cloudflare/computer-rpc").SyncRPC = { |
| 947 | push: () => tripwire("push"), |
| 948 | fetchChanges: () => tripwire("fetchChanges"), |