/** * RPC methods on the graph worker that do NOT mutate persistent state. * * Used by: * - Phase 4 failover: read-only calls may be retried exactly once after * the transport reconnects. Write calls instead surface a * `LeaderLostError` so the caller can decide its own policy. * - Phase 5 read-only fast path: followers route these directly to a * local read-only SQLite handle instead of hopping through the leader. * * Keep this list in sync with handler registration in `worker.ts`. */ export declare const READ_ONLY_METHODS: ReadonlySet; export declare function isReadOnlyMethod(method: string): boolean; //# sourceMappingURL=read-only-methods.d.ts.map