UEA-Prodem
This commit is contained in:
+31
@@ -0,0 +1,31 @@
|
||||
import { CreateTRPCReactQueryClientConfig, DecorateQueryProcedure } from "../getQueryKey.d-CruH3ncI.mjs";
|
||||
import { TRPCClient, TRPCUntypedClient } from "@trpc/client";
|
||||
import { DehydrateOptions, DehydratedState, QueryClient } from "@tanstack/react-query";
|
||||
import { AnyQueryProcedure, AnyRootTypes, AnyRouter, ProtectedIntersection, RouterRecord, inferClientTypes, inferRouterContext } from "@trpc/server/unstable-core-do-not-import";
|
||||
import { TransformerOptions } from "@trpc/client/unstable-internals";
|
||||
|
||||
//#region src/server/ssgProxy.d.ts
|
||||
type CreateSSGHelpersInternal<TRouter extends AnyRouter> = {
|
||||
router: TRouter;
|
||||
ctx: inferRouterContext<TRouter>;
|
||||
} & TransformerOptions<inferClientTypes<TRouter>>;
|
||||
interface CreateSSGHelpersExternal<TRouter extends AnyRouter> {
|
||||
client: TRPCClient<TRouter> | TRPCUntypedClient<TRouter>;
|
||||
}
|
||||
type CreateServerSideHelpersOptions<TRouter extends AnyRouter> = CreateTRPCReactQueryClientConfig & (CreateSSGHelpersExternal<TRouter> | CreateSSGHelpersInternal<TRouter>);
|
||||
type SSGFns = 'queryOptions' | 'infiniteQueryOptions' | 'fetch' | 'fetchInfinite' | 'prefetch' | 'prefetchInfinite';
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
type DecoratedProcedureSSGRecord<TRoot extends AnyRootTypes, TRecord extends RouterRecord> = { [TKey in keyof TRecord]: TRecord[TKey] extends infer $Value ? $Value extends AnyQueryProcedure ? Pick<DecorateQueryProcedure<TRoot, $Value>, SSGFns> : $Value extends RouterRecord ? DecoratedProcedureSSGRecord<TRoot, $Value> : never : never };
|
||||
/**
|
||||
* Create functions you can use for server-side rendering / static generation
|
||||
* @see https://trpc.io/docs/v11/client/nextjs/server-side-helpers
|
||||
*/
|
||||
declare function createServerSideHelpers<TRouter extends AnyRouter>(opts: CreateServerSideHelpersOptions<TRouter>): ProtectedIntersection<{
|
||||
queryClient: QueryClient;
|
||||
dehydrate: (opts?: DehydrateOptions) => DehydratedState;
|
||||
}, DecoratedProcedureSSGRecord<TRouter["_def"]["_config"]["$types"], TRouter["_def"]["record"]>>;
|
||||
//#endregion
|
||||
export { createServerSideHelpers };
|
||||
//# sourceMappingURL=index.d.mts.map
|
||||
Reference in New Issue
Block a user