mirror of
https://github.com/SrIzan10/echospace.git
synced 2026-06-06 00:56:54 +00:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
import { z } from "zod";
|
|
|
|
export const createSchema = z.object({
|
|
name: z.string().nonempty(),
|
|
description: z.string().nonempty(),
|
|
});
|
|
export type createSchemaType = z.infer<typeof createSchema>; |