mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
10 lines (9 loc) • 353 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.simpleListItemSchema = void 0;
const zod_1 = require("zod");
exports.simpleListItemSchema = zod_1.z.object({
id: zod_1.z.string().optional().or(zod_1.z.number()).optional(),
title: zod_1.z.string().optional(),
description: zod_1.z.string().optional(),
});
;