igniteui-react-core
Version:
Ignite UI React Core.
52 lines (51 loc) • 1.8 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, String_$type, Array_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
/**
* @hidden
*/
export let SvgIconCollection = /*@__PURE__*/ (() => {
class SvgIconCollection extends Base {
constructor() {
super(...arguments);
this.g = null;
this.b = new Dictionary$2(String_$type, String_$type, 0);
this.c = new Dictionary$2(String_$type, Array_$type, 0);
this.d = new Dictionary$2(String_$type, Base.$, 0);
}
j(a, b) {
this.b.item(a, b);
}
f(a) {
if (a != null && this.b.containsKey(a)) {
return this.b.item(a);
}
return null;
}
i(a, b) {
this.c.item(a, b);
}
a(a) {
if (a != null && this.c.containsKey(a)) {
return this.c.item(a);
}
return null;
}
h(a, b) {
this.d.item(a, b);
}
e(a) {
if (a != null && this.d.containsKey(a)) {
return this.d.item(a);
}
return null;
}
}
SvgIconCollection.$t = /*@__PURE__*/ markType(SvgIconCollection, 'SvgIconCollection');
return SvgIconCollection;
})();