UNPKG

@datazod/zod-sql

Version:

Convert Zod schemas to SQL table definitions with support for SQLite, PostgreSQL, and MySQL

8 lines (7 loc) 247 B
import { flattenZodToObject } from '@datazod/shared'; /** * Creates a flattened schema JSON representation for type inference */ export function createFlattenedSchemaJson(schema, options = {}) { return flattenZodToObject(schema, options); }