UNPKG

@thi.ng/api

Version:

Common, generic types, interfaces & mixins

11 lines 243 B
/** * Generic interface for clonable types. */ export interface ICopy<T> { /** * Returns a copy of this instance. Shallow or deep copies are * implementation specific. */ copy(): T; } //# sourceMappingURL=copy.d.ts.map