mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-17 20:54:55 +02:00
13 lines
292 B
TypeScript
13 lines
292 B
TypeScript
import type {CodeKeywordDefinition} from "../../types"
|
|
import {validateUnion} from "../code"
|
|
|
|
const def: CodeKeywordDefinition = {
|
|
keyword: "union",
|
|
schemaType: "array",
|
|
trackErrors: true,
|
|
code: validateUnion,
|
|
error: {message: "must match a schema in union"},
|
|
}
|
|
|
|
export default def
|