* revert me later * let's see if this builds * fix dupe proc * fix: v10 works * fix type error * fix type error * fix type errors * fix more * add example procedure * spreading not needed * Update yarn.lock * Revert "revert me later" This reverts commit 0c8c15d0577e0c287223039c7b6958b2b0c12c69. Co-authored-by: Chris Bautista <chrisbautista@netflix.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Alex van Andel <me@alexvanandel.com>
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import superjson from "superjson";
|
||
|
||
import { createReactQueryHooks } from "@trpc/react";
|
||
|
||
// ℹ️ Type-only import:
|
||
// https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html#type-only-imports-and-export
|
||
import type { inferProcedureInput, inferProcedureOutput } from "../server";
|
||
import type { AppRouter } from "../server/routers/_app";
|
||
|
||
/**
|
||
* A set of strongly-typed React hooks from your `AppRouter` type signature with `createReactQueryHooks`.
|
||
* @link https://trpc.io/docs/react#3-create-trpc-hooks
|
||
*/
|
||
export const trpc = createReactQueryHooks<AppRouter>();
|
||
|
||
export const proxy = trpc.proxy;
|
||
|
||
export const transformer = superjson;
|
||
/**
|
||
* This is a helper method to infer the output of a query resolver
|
||
* @example type HelloOutput = inferQueryOutput<'hello'>
|
||
*/
|
||
export type inferQueryOutput<TRouteKey extends keyof AppRouter["_def"]["queries"]> = inferProcedureOutput<
|
||
AppRouter["_def"]["queries"][TRouteKey]
|
||
>;
|
||
|
||
export type inferQueryInput<TRouteKey extends keyof AppRouter["_def"]["queries"]> = inferProcedureInput<
|
||
AppRouter["_def"]["queries"][TRouteKey]
|
||
>;
|
||
|
||
export type inferMutationInput<TRouteKey extends keyof AppRouter["_def"]["mutations"]> = inferProcedureInput<
|
||
AppRouter["_def"]["mutations"][TRouteKey]
|
||
>;
|
||
|
||
export type inferMutationOutput<TRouteKey extends keyof AppRouter["_def"]["mutations"]> =
|
||
inferProcedureOutput<AppRouter["_def"]["mutations"][TRouteKey]>;
|