cal.pub0.org/packages/app-store/basecamp3/trpc/projectMutation.schema.ts

8 lines
197 B
TypeScript

import { z } from "zod";
export const ZProjectMutationInputSchema = z.object({
projectId: z.string(),
});
export type TProjectMutationInputSchema = z.infer<typeof ZProjectMutationInputSchema>;