mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
15 lines (14 loc) • 375 B
TypeScript
import * as z from 'zod';
export declare const siteCreateSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodString>;
name: z.ZodString;
domain: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
name: string;
id?: string | undefined;
domain?: string | undefined;
}, {
name: string;
id?: string | undefined;
domain?: string | undefined;
}>;