UNPKG

pulse-ai-utils

Version:

Utility functions and helpers for AI-powered applications

8 lines (7 loc) 251 B
import { z } from 'zod'; export interface SchemaPair { zod: z.ZodTypeAny; json: any; } export declare function getSchemaByCategory(category: string): SchemaPair; export declare function getSchemaByCategoryLegacy(category: string): SchemaPair;