mirror of
https://github.com/thegecko/web-bluetooth-dfu.git
synced 2026-05-09 00:34:38 +08:00
65 lines
2.7 KiB
JavaScript
65 lines
2.7 KiB
JavaScript
"use strict";
|
|
/*
|
|
* Web Bluetooth DFU
|
|
* Copyright (c) 2018 Rob Moran
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
var __extends = (this && this.__extends) || (function () {
|
|
var extendStatics = function (d, b) {
|
|
extendStatics = Object.setPrototypeOf ||
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
return extendStatics(d, b);
|
|
};
|
|
return function (d, b) {
|
|
extendStatics(d, b);
|
|
function __() { this.constructor = d; }
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
};
|
|
})();
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var events_1 = require("events");
|
|
/**
|
|
* @hidden
|
|
*/
|
|
var EventDispatcher = /** @class */ (function (_super) {
|
|
__extends(EventDispatcher, _super);
|
|
function EventDispatcher() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
// tslint:disable-next-line:array-type
|
|
EventDispatcher.prototype.addEventListener = function (event, listener) {
|
|
return _super.prototype.addListener.call(this, event, listener);
|
|
};
|
|
// tslint:disable-next-line:array-type
|
|
EventDispatcher.prototype.removeEventListener = function (event, listener) {
|
|
return _super.prototype.removeListener.call(this, event, listener);
|
|
};
|
|
EventDispatcher.prototype.dispatchEvent = function (eventType, event) {
|
|
return _super.prototype.emit.call(this, eventType, event);
|
|
};
|
|
return EventDispatcher;
|
|
}(events_1.EventEmitter));
|
|
exports.EventDispatcher = EventDispatcher;
|
|
|
|
//# sourceMappingURL=dispatcher.js.map
|