mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
326 B
TypeScript
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;
|