import { createTRPCProxyClient, httpBatchLink } from '@trpc/client'; import superjson from 'superjson'; import type { Runtime } from '@morten-olsen/mini-loader-server'; import type { RootRouter } from '@morten-olsen/mini-loader-server'; const createClient = () => { const client = createTRPCProxyClient({ transformer: superjson, links: [ httpBatchLink({ url: 'http://localhost:4500/trpc', }), ], }); return client; }; type Client = ReturnType; export type { Client, Runtime }; export { createClient };