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

10 lines
353 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
/**
* returns a new json-schema, where properties are combined and arrays are replaced
*/
declare const _default: <T>(a: Partial<T>, b: Partial<T>) => T;
export default _default;
/**
* returns a new json-schema, where properties are combined and arrays are replaced
*/
export declare const mergeArraysUnique: <T>(a: Partial<T>, b: Partial<T>) => T;