mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
16 lines (15 loc) • 335 B
TypeScript
import { z } from 'zod';
export declare const ViewSchema: z.ZodObject<{
id: z.ZodNumber;
slug: z.ZodString;
viewState: z.ZodAny;
}, "strip", z.ZodTypeAny, {
id: number;
slug: string;
viewState?: any;
}, {
id: number;
slug: string;
viewState?: any;
}>;
export type View = z.infer<typeof ViewSchema>;