import { TransformerOptions } from "@trpc/client/unstable-internals"; import { AnyRouter, inferClientTypes, inferRouterContext } from "@trpc/server/unstable-core-do-not-import"; import { TRPCLink } from "@trpc/client"; //#region src/app-dir/links/nextCache.d.ts type NextCacheLinkOptions = { router: TRouter; createContext: () => Promise>; /** how many seconds the cache should hold before revalidating */ revalidate?: number | false; } & TransformerOptions>; export declare function experimental_nextCacheLink(opts: NextCacheLinkOptions): TRPCLink; //#endregion //# sourceMappingURL=nextCache.d.mts.map