6 lines
158 B
TypeScript
6 lines
158 B
TypeScript
import type { trpcClient, trpcPureClient } from './client';
|
|
|
|
export type TRPCClient = typeof trpcClient;
|
|
|
|
export type TRPCPureClient = typeof trpcPureClient;
|