json-schema-library
Version:
Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation
6 lines (5 loc) • 337 B
TypeScript
import { SchemaNode } from "../types";
import { Keyword, JsonSchemaReducerParams } from "../Keyword";
export declare const dependenciesKeyword: Keyword;
export declare function parseDependencies(node: SchemaNode): void;
export declare function reduceDependencies({ node, data, key, pointer, path }: JsonSchemaReducerParams): SchemaNode;