igniteui-react-core
Version:
Ignite UI React Core.
31 lines (30 loc) • 1.31 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, Number_$type, markType } from "./type";
import { HashSet$1 } from "./HashSet$1";
import { List$1 } from "./List$1";
import { DescriptionTreeAction } from "./DescriptionTreeAction";
/**
* @hidden
*/
export let DiffApplyInfo = /*@__PURE__*/ (() => {
class DiffApplyInfo extends Base {
constructor() {
super();
this.a = null;
this.c = null;
this.b = null;
this.d = null;
this.a = new HashSet$1(Number_$type, 0);
this.c = new List$1(DescriptionTreeAction.$, 0);
this.b = new List$1(DescriptionTreeAction.$, 0);
this.d = new List$1(DescriptionTreeAction.$, 0);
}
}
DiffApplyInfo.$t = /*@__PURE__*/ markType(DiffApplyInfo, 'DiffApplyInfo');
return DiffApplyInfo;
})();