UNPKG

@amcharts/amcharts4

Version:
9 lines (8 loc) 145 B
/** * An interface for an object that can be cloned. * * @ignore Exclude from docs */ export interface IClone<A> { clone(): A; }