hap-nodejs
Version:
HAP-NodeJS is a Node.js implementation of HomeKit Accessory Server.
7 lines • 300 B
TypeScript
/**
* A simple clone function that also allows you to pass an "extend" object whose properties will be
* added to the cloned copy of the original object passed.
* @group Utils
*/
export declare function clone<T extends object, U>(object: T, extend?: U): T & U;
//# sourceMappingURL=clone.d.ts.map