UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

13 lines (12 loc) 414 B
import { z } from "zod"; export declare const categoryListInputSchema: z.ZodObject<{ parent: z.ZodOptional<z.ZodNumber>; keyword: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { parent?: number | undefined; keyword?: string | undefined; }, { parent?: number | undefined; keyword?: string | undefined; }>; export type categoryListInputType = z.infer<typeof categoryListInputSchema>;