UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

31 lines (30 loc) 741 B
import * as z from "zod"; export declare const spiderReqCreateSchema: z.ZodObject<{ domain: z.ZodString; path: z.ZodString; priority: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { path: string; domain: string; priority?: number | undefined; }, { path: string; domain: string; priority?: number | undefined; }>; export declare const spiderReqUpdateSchema: z.ZodObject<{ id: z.ZodString; domain: z.ZodString; path: z.ZodString; priority: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { path: string; id: string; domain: string; priority?: number | undefined; }, { path: string; id: string; domain: string; priority?: number | undefined; }>;