mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
26 lines (25 loc) • 680 B
TypeScript
import { z } from 'zod';
export declare const EmuBrowserCreateSchema: z.ZodObject<{
title: z.ZodOptional<z.ZodDefault<z.ZodString>>;
}, "strip", z.ZodTypeAny, {
title?: string | undefined;
}, {
title?: string | undefined;
}>;
export declare const emuBrowserCreateOutputSchema: z.ZodObject<{
browserId: z.ZodString;
}, "strip", z.ZodTypeAny, {
browserId: string;
}, {
browserId: string;
}>;
export declare const EmuBrowserUpdateSchema: z.ZodObject<{
title: z.ZodOptional<z.ZodDefault<z.ZodString>>;
id: z.ZodString;
}, "strip", z.ZodTypeAny, {
id: string;
title?: string | undefined;
}, {
id: string;
title?: string | undefined;
}>;