igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
40 lines (39 loc) • 1.41 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Base, typeCast, markType } from "igniteui-react-core";
/**
* @hidden
*/
export let CalloutKey = /*@__PURE__*/ (() => {
class CalloutKey extends Base {
constructor(a, b) {
super();
this._item = null;
this.a = null;
this.item = a;
this.a = b;
}
get item() {
return this._item;
}
set item(a) {
this._item = a;
}
getHashCode() {
return Base.getHashCodeStatic(this.item) ^ Base.getHashCodeStatic(this.a);
}
equals(a) {
let b = typeCast(CalloutKey.$, a);
if (b == null) {
return super.equals(a);
}
return Base.referenceEquals(this.item, b.item) && this.a == b.a;
}
}
CalloutKey.$t = /*@__PURE__*/ markType(CalloutKey, 'CalloutKey');
return CalloutKey;
})();