mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +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;
|