UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

49 lines (48 loc) 1.81 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 { EventArgs, markType } from "./type"; /** * @hidden */ var ImageCapturedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ImageCapturedEventArgs, _super); function ImageCapturedEventArgs(a, b, c) { var _this = _super.call(this) || this; _this.f = null; _this.d = null; _this.b = null; _this.f = a; _this.d = b; _this.b = c; return _this; } Object.defineProperty(ImageCapturedEventArgs.prototype, "base64Data", { get: function () { return this.f; }, enumerable: false, configurable: true }); Object.defineProperty(ImageCapturedEventArgs.prototype, "image", { get: function () { return this.d; }, enumerable: false, configurable: true }); Object.defineProperty(ImageCapturedEventArgs.prototype, "settings", { get: function () { return this.b; }, enumerable: false, configurable: true }); ImageCapturedEventArgs.$t = markType(ImageCapturedEventArgs, 'ImageCapturedEventArgs', EventArgs.$); return ImageCapturedEventArgs; }(EventArgs)); export { ImageCapturedEventArgs };