/*** UTILITY ------------------------------------------ ***/ import type { Fetcher, FetcherOptions } from "./types.ts"; /*** EXPORT ------------------------------------------- ***/ /** * Server-Sent Events fetcher for graphql-sse protocol. * Stub implementation — see PLAN.md stage v0.4 for full implementation. */ export function createSseFetcher(_options: FetcherOptions): Fetcher { return () => { throw new Error("SSE fetcher not yet implemented — see PLAN.md v0.4"); }; }