igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
59 lines (58 loc) • 1.79 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebIconDescription = /*@__PURE__*/ (() => {
class WebIconDescription extends Description {
constructor() {
super();
this.i = null;
this.h = null;
this.f = false;
this.j = null;
}
get_type() {
return "WebIcon";
}
get type() {
return this.get_type();
}
get iconName() {
return this.i;
}
set iconName(a) {
this.i = a;
this.e("IconName");
}
get collection() {
return this.h;
}
set collection(a) {
this.h = a;
this.e("Collection");
}
get mirrored() {
return this.f;
}
set mirrored(a) {
this.f = a;
this.e("Mirrored");
}
get size() {
return this.j;
}
set size(a) {
this.j = a;
this.e("Size");
}
}
WebIconDescription.$t = markType(WebIconDescription, 'WebIconDescription', Description.$);
return WebIconDescription;
})();