8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
import { initTRPC } from '@trpc/server';
|
|
import SuperJSON from 'superjson';
|
|
|
|
export const t = initTRPC.create({
|
|
transformer: SuperJSON,
|
|
});
|