mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
16 lines (15 loc) • 565 B
TypeScript
import { z } from "zod";
export declare const simpleListItemSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodNumber]>>;
title: z.ZodOptional<z.ZodString>;
description: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
id?: string | number | undefined;
title?: string | undefined;
description?: string | undefined;
}, {
id?: string | number | undefined;
title?: string | undefined;
description?: string | undefined;
}>;
export type ISimpleListItem = z.infer<typeof simpleListItemSchema>;