parseIfThenElse
@tsed/cli-mcp
Usage
typescript
import { parseIfThenElse } from "@tsed/cli-mcp/src/utils/json-schema-to-zod/parsers/parseIfThenElse";See /packages/cli-mcp/src/utils/json-schema-to-zod/parsers/parseIfThenElse.ts.
Overview
ts
const parseIfThenElse: (schema: JsonSchemaObject & {
if: JsonSchema;
then: JsonSchema;
else: JsonSchema;
}, refs: Refs) => string;if
ts
if: JsonSchema;then
ts
then: JsonSchema;else
ts
else: JsonSchema;