igniteui-react-grids
Version:
Ignite UI React grid components.
45 lines (44 loc) • 1.73 kB
JavaScript
import { OperatorSelectorClosingEventArgs as OperatorSelectorClosingEventArgs_internal } from "./OperatorSelectorClosingEventArgs";
var IgrOperatorSelectorClosingEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrOperatorSelectorClosingEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrOperatorSelectorClosingEventArgs.prototype.createImplementation = function () {
return new OperatorSelectorClosingEventArgs_internal();
};
Object.defineProperty(IgrOperatorSelectorClosingEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrOperatorSelectorClosingEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrOperatorSelectorClosingEventArgs.prototype.onImplementationCreated = function () {
};
IgrOperatorSelectorClosingEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgrOperatorSelectorClosingEventArgs;
}());
export { IgrOperatorSelectorClosingEventArgs };