allof-merge
Version:
Simplify JsonSchema/Openapi by combining allOf safely
6 lines (5 loc) • 360 B
TypeScript
import type { JsonSchema, MergeResolver } from "../types";
export declare const getPropertiesForMerge: (allOfItems: JsonSchema[]) => any[];
export declare const getPatternPropertiesForMerge: (allOfItems: JsonSchema[]) => any[];
export declare const propertiesMergeResolver: MergeResolver;
export declare const additionalPropertiesMergeResolver: MergeResolver;