You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
249 B

/**
* `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: X, y: Y): unknown;
//# sourceMappingURL=merge.d.ts.map