* migrate trpc routers in app package to trpc package * delete * delete * delete * fix * fix * fix * format * format * fix * fix * fix * fix * remove unused file * fix * fix * wip
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import z from "zod";
|
|
|
|
export const ZDeleteFormInputSchema = z.object({
|
|
id: z.string(),
|
|
});
|
|
|
|
export type TDeleteFormInputSchema = z.infer<typeof ZDeleteFormInputSchema>;
|