DefinitelyTyped/types/just-clone/index.d.ts
Chris Howard 92a0fe0a28 [just-clone] Adding new Typings for just-clone module (#39996)
* Typings for just-clone

* Updated tests

* Added more tests

* Moved test
2019-11-01 16:16:51 -07:00

10 lines
326 B
TypeScript

// Type definitions for just-clone 3.1
// Project: https://github.com/angus-c/just#readme
// Definitions by: Chris Howard <https://github.com/ConnectivityChris>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
declare function clone<T extends object>(obj: T): T;
export = clone;