igniteui-react-core
Version:
Ignite UI React Core.
54 lines (53 loc) • 2.07 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 { __extends } from "tslib";
import { Base, String_$type, Array_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
/**
* @hidden
*/
var SvgIconCollection = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SvgIconCollection, _super);
function SvgIconCollection() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_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);
return _this;
}
SvgIconCollection.prototype.j = function (a, b) {
this.b.item(a, b);
};
SvgIconCollection.prototype.f = function (a) {
if (a != null && this.b.containsKey(a)) {
return this.b.item(a);
}
return null;
};
SvgIconCollection.prototype.i = function (a, b) {
this.c.item(a, b);
};
SvgIconCollection.prototype.a = function (a) {
if (a != null && this.c.containsKey(a)) {
return this.c.item(a);
}
return null;
};
SvgIconCollection.prototype.h = function (a, b) {
this.d.item(a, b);
};
SvgIconCollection.prototype.e = function (a) {
if (a != null && this.d.containsKey(a)) {
return this.d.item(a);
}
return null;
};
SvgIconCollection.$t = markType(SvgIconCollection, 'SvgIconCollection');
return SvgIconCollection;
}(Base));
export { SvgIconCollection };