UNPKG

hataraku

Version:

An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.

16 lines (15 loc) 434 B
import { z } from 'zod'; type JsonSchemaType = { type?: string; properties?: Record<string, any>; required?: string[]; items?: JsonSchemaType; enum?: string[]; oneOf?: JsonSchemaType[]; }; /** * Convert a Zod schema to JSON Schema format */ export declare function zodToJsonSchema(schema: z.ZodType<any>): JsonSchemaType; export declare function zodToSchemaString(schema: z.ZodType<any>): string; export {};