UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

17 lines (13 loc) 394 B
import type {CodeKeywordDefinition, ErrorNoParams, AnySchema} from "../../types" import {validateUnion} from "../code" export type AnyOfError = ErrorNoParams<"anyOf", AnySchema[]> const def: CodeKeywordDefinition = { keyword: "anyOf", schemaType: "array", trackErrors: true, code: validateUnion, error: { message: "should match some schema in anyOf", }, } export default def