persona-community-5/.pnpm-store/v3/files/26/9cc6c3238dcbfaca25613d61436e0ee120dc52efd98fc91a2d45e702ebe42ea8458e5ce0912da1335ae47e4bbed289bbf082ceff1e09a8d2927e26fcd27f68
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

13 lines
292 B
Plaintext

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