import { HTTPBatchLinkOptions, HTTPLinkOptions, TRPCLink } from "@trpc/client"; import { AnyRootTypes, AnyRouter } from "@trpc/server/unstable-core-do-not-import"; //#region src/app-dir/links/nextHttp.d.ts interface NextLinkBaseOptions { revalidate?: number | false; batch?: boolean; } type NextLinkSingleOptions = NextLinkBaseOptions & Omit, 'fetch'> & { batch?: false; }; type NextLinkBatchOptions = NextLinkBaseOptions & Omit, 'fetch'> & { batch: true; }; export declare function experimental_nextHttpLink(opts: NextLinkSingleOptions | NextLinkBatchOptions): TRPCLink; //#endregion //# sourceMappingURL=nextHttp.d.cts.map