import type { Cache } from "../../Cache/index.js"; /** * `QueryContext` maintains the context of a query. Currently `QueryContext` * simply maintains a `Cache` of requests and results but this will be * augmented with other functionality such as logging and metrics in the * future. */ export interface QueryContext { cache: Cache; } //# sourceMappingURL=index.d.ts.map