Files
portabase/src/components/wrappers/project/ProjectForm.schema.ts
T

10 lines
173 B
TypeScript

import {z} from "zod";
export const ProjectSchema = z.object({
name: z.string(),
slug: z.string(),
});
export type ProjectSchema = z.infer<typeof ProjectSchema>;