UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

54 lines (53 loc) 1.42 kB
import { z } from "zod"; export declare const botConfigEntity: z.ZodObject<{ id: z.ZodNumber; title: z.ZodString; description: z.ZodString; botType: z.ZodString; config: z.ZodAny; }, "strip", z.ZodTypeAny, { title: string; id: number; description: string; botType: string; config?: any; }, { title: string; id: number; description: string; botType: string; config?: any; }>; export declare const listBotInputSchema: z.ZodObject<{ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>; keyword: z.ZodOptional<z.ZodString>; limit: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { cursor?: string | null | undefined; keyword?: string | undefined; limit?: number | undefined; }, { cursor?: string | null | undefined; keyword?: string | undefined; limit?: number | undefined; }>; export declare const literalSchema: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>; export declare const saveBotConfigSchema: z.ZodObject<{ title: z.ZodString; description: z.ZodString; botType: z.ZodString; config: z.ZodAny; id: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { title: string; description: string; botType: string; config?: any; id?: number | undefined; }, { title: string; description: string; botType: string; config?: any; id?: number | undefined; }>;