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