UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

15 lines (14 loc) 381 B
import * as z from "zod"; export const ghRepoCreateSchema = z.object({ user: z.string(), title: z.string().default("no title"), repo: z.string(), accessToken: z.string() }); export const ghRepoUpdateSchema = z.object({ id: z.string(), title: z.string().min(3).max(128).optional(), user: z.string(), repo: z.string(), accessToken: z.string() });