mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:09:29 +08:00
12 lines
292 B
Text
12 lines
292 B
Text
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
|