igniteui-react-core
Version:
Ignite UI React Core.
41 lines (40 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 { Base, markType } from "./type";
/**
* @hidden
*/
export let DescriptionRefTargetInfo = /*@__PURE__*/ (() => {
class DescriptionRefTargetInfo extends Base {
constructor() {
super(...arguments);
this._target = null;
this._propertyName = null;
this._container = null;
}
get target() {
return this._target;
}
set target(a) {
this._target = a;
}
get propertyName() {
return this._propertyName;
}
set propertyName(a) {
this._propertyName = a;
}
get container() {
return this._container;
}
set container(a) {
this._container = a;
}
}
DescriptionRefTargetInfo.$t = /*@__PURE__*/ markType(DescriptionRefTargetInfo, 'DescriptionRefTargetInfo');
return DescriptionRefTargetInfo;
})();