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

9 lines
353 B
TypeScript

/**
* 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;