UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

13 lines (12 loc) 268 B
import { z } from "zod"; export declare const tagSchema: z.ZodObject<{ id: z.ZodString; title: z.ZodString; }, "strip", z.ZodTypeAny, { title: string; id: string; }, { title: string; id: string; }>; export type Tag = z.infer<typeof tagSchema>;