mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 09:08:03 +00:00
7 lines
276 B
TypeScript
7 lines
276 B
TypeScript
/**
|
|
* @name objectSpread
|
|
* @summary Concats all sources into the destination
|
|
* @description Spreads object properties while maintaining object integrity
|
|
*/
|
|
export declare function objectSpread<T extends object>(dest: object, ...sources: (object | undefined | null)[]): T;
|