UNPKG

253 BPlain TextView Raw
1import type {CodeKeywordDefinition} from "../../types"
2import {dynamicRef} from "./dynamicRef"
3
4const def: CodeKeywordDefinition = {
5 keyword: "$recursiveRef",
6 schemaType: "string",
7 code: (cxt) => dynamicRef(cxt, cxt.schema),
8}
9
10export default def