@tsed/schema
Version:
JsonSchema module for Ts.ED Framework
11 lines (10 loc) • 410 B
TypeScript
import type { AnyJsonSchema, JsonSchema } from "../domain/JsonSchema.js";
/**
* See https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.28
*
* * See @@JsonSchema@@ to discover available methods.
*
* @schemaFunctional
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.28
*/
export declare function oneOf(...oneOf: AnyJsonSchema[]): JsonSchema;