UNPKG

clonus

Version:

Ultimate object cloning library.

6 lines (5 loc) 167 B
import { CloneContext } from "./cloneContext"; export declare type Cloner = { canClone<T>(input: T): boolean; clone<T>(input: T, context: CloneContext): T; };