botbook/node_modules/json-schema-library/dist/lib/mergeSchema.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

6 lines
250 B
TypeScript

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;