@tsed/schema
Version:
JsonSchema module for Ts.ED Framework
12 lines (11 loc) • 347 B
JavaScript
import { from } from "./from.js";
/**
* See https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.27
*
* * See @@JsonSchema@@ to discover available methods.
*
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.27
*/
export function anyOf(...anyOf) {
return from().anyOf(anyOf);
}