mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
10 lines
173 B
TypeScript
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>;
|