mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
27 lines (26 loc) • 859 B
TypeScript
import * as z from "zod";
export declare const commandListSchema: z.ZodObject<{
keyword: z.ZodOptional<z.ZodString>;
siteId: z.ZodOptional<z.ZodString>;
categoryId: z.ZodOptional<z.ZodNumber>;
slug: z.ZodOptional<z.ZodString>;
tags: z.ZodOptional<z.ZodString>;
limit: z.ZodOptional<z.ZodNumber>;
cursor: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
keyword?: string | undefined;
siteId?: string | undefined;
categoryId?: number | undefined;
slug?: string | undefined;
tags?: string | undefined;
limit?: number | undefined;
cursor?: string | undefined;
}, {
keyword?: string | undefined;
siteId?: string | undefined;
categoryId?: number | undefined;
slug?: string | undefined;
tags?: string | undefined;
limit?: number | undefined;
cursor?: string | undefined;
}>;