UNPKG

igniteui-react-core

Version:
33 lines (32 loc) 1.4 kB
/* 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, Number_$type, markType } from "./type"; import { HashSet$1 } from "./HashSet$1"; import { List$1 } from "./List$1"; import { DescriptionTreeAction } from "./DescriptionTreeAction"; /** * @hidden */ var DiffApplyInfo = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DiffApplyInfo, _super); function DiffApplyInfo() { var _this = _super.call(this) || this; _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); return _this; } DiffApplyInfo.$t = markType(DiffApplyInfo, 'DiffApplyInfo'); return DiffApplyInfo; }(Base)); export { DiffApplyInfo };