UNPKG

ez-web-toolkit

Version:
14 lines (13 loc) 328 B
/** * @namespace toolkit.utils */ /** * @class toolkit.utils.ObjectCopier * @classdesc Copies object properties from one object to another. */ export declare class ObjectCopier { /** * copies object properties from one object to another. */ static copyObject<T>(copyFrom: T, copyTo: T): T; }