botbook/node_modules/json-schema-library/dist/lib/mergeSchema.d.ts

7 lines
250 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
import { JsonSchema } from "./types";
/**
* merges to two json schema. In case of conflicts, will use overwrite first
* schema or directly return first json schema.
*/
export declare function mergeSchema(a: JsonSchema, b: JsonSchema): JsonSchema;