Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

6 lines
265 B
TypeScript

/**
* `deepmerge` concatenates arrays by default instead of overwriting them.
* We define custom merging function for arrays to change that behaviour
*/
export default function merge<X, Y>(x: Partial<X>, y: Partial<Y>): X & Y;
//# sourceMappingURL=merge.d.ts.map