UNPKG

gemini-zod

Version:
16 lines (15 loc) 376 B
export declare enum SchemaType { /** String type. */ STRING = "string", /** Number type. */ NUMBER = "number", /** Integer type. */ INTEGER = "integer", /** Boolean type. */ BOOLEAN = "boolean", /** Array type. */ ARRAY = "array", /** Object type. */ OBJECT = "object" } export declare function getZodType(schema: any): string;