UNPKG

393 BTypeScriptView Raw
1/**
2 * Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
3 *
4 * Similar to Object.assign(), but it doesn't execute getters. This allows us to have
5 * lazy properties on an object and still be able to merge them together
6 *
7 */
8export default function assign(target: Object, ...sources: Object[]): Object;
9//# sourceMappingURL=assign.d.ts.map
\No newline at end of file