mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 11:27:59 +00:00
6 lines
152 B
TypeScript
6 lines
152 B
TypeScript
/**
|
|
* @name objectCopy
|
|
* @summary Creates a shallow clone of the input object
|
|
*/
|
|
export declare function objectCopy<T extends object>(source: T): T;
|