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

9 lines
393 B
TypeScript

/**
* Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
*
* Similar to Object.assign(), but it doesn't execute getters. This allows us to have
* lazy properties on an object and still be able to merge them together
*
*/
export default function assign(target: Object, ...sources: Object[]): Object;
//# sourceMappingURL=assign.d.ts.map