persona-community-5/.pnpm-store/v3/files/09/a4034769bd62d6ee0cc654d106cee999987c67be2cb98a034938276f187e13023933895f486ec5bbde8055ba92c5a48b45e688898b7cb379e2aaef019c0d6c
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 {validateTuple} from "./items"
const def: CodeKeywordDefinition = {
keyword: "prefixItems",
type: "array",
schemaType: ["array"],
before: "uniqueItems",
code: (cxt) => validateTuple(cxt, "items"),
}
export default def