UNPKG

@robotlegsjs/createjs

Version:
42 lines 1.97 kB
"use strict"; // ------------------------------------------------------------------------------ // Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. // ------------------------------------------------------------------------------ Object.defineProperty(exports, "__esModule", { value: true }); exports.ContainerBindingEvent = void 0; var tslib_1 = require("tslib"); var core_1 = require("@robotlegsjs/core"); /** * @private */ var ContainerBindingEvent = /** @class */ (function (_super) { tslib_1.__extends(ContainerBindingEvent, _super); /*============================================================================*/ /* Constructor */ /*============================================================================*/ /** * @private */ function ContainerBindingEvent(type) { return _super.call(this, type) || this; } /*============================================================================*/ /* Public Functions */ /*============================================================================*/ /** * @inheritDoc */ ContainerBindingEvent.prototype.clone = function () { return new ContainerBindingEvent(this.type); }; /*============================================================================*/ /* Public Static Properties */ /*============================================================================*/ ContainerBindingEvent.BINDING_EMPTY = "bindingEmpty"; return ContainerBindingEvent; }(core_1.Event)); exports.ContainerBindingEvent = ContainerBindingEvent; //# sourceMappingURL=ContainerBindingEvent.js.map