UNPKG

243 BTypeScriptView Raw
1/**
2 * Generic interface for clonable types.
3 */
4export interface ICopy<T> {
5 /**
6 * Returns a copy of this instance. Shallow or deep copies are
7 * implementation specific.
8 */
9 copy(): T;
10}
11//# sourceMappingURL=copy.d.ts.map
\No newline at end of file