igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
34 lines (33 loc) • 1.42 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, 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.c = null;
_this.a = new Dictionary$2(String_$type, String_$type, 0);
return _this;
}
SvgIconCollection.prototype.d = function (a, b) {
this.a.item(a, b);
};
SvgIconCollection.prototype.b = function (a) {
if (this.a.containsKey(a)) {
return this.a.item(a);
}
return null;
};
SvgIconCollection.$t = markType(SvgIconCollection, 'SvgIconCollection');
return SvgIconCollection;
}(Base));
export { SvgIconCollection };