persona-community-5/.pnpm-store/v3/files/ec/6504200a030a0f5a8c43061c068bd240c47acba66c5b207764c111fdc1b881f8b55223a472a63cfb331fb461b0df89568bcab3dffd87282a66884bad595b8e
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

11 lines
253 B
Plaintext

import type {CodeKeywordDefinition} from "../../types"
import {dynamicRef} from "./dynamicRef"
const def: CodeKeywordDefinition = {
keyword: "$recursiveRef",
schemaType: "string",
code: (cxt) => dynamicRef(cxt, cxt.schema),
}
export default def