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