mirror of https://github.com/OpenVidu/openvidu.git
18 lines
612 B
JavaScript
18 lines
612 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var MediaElement = (function () {
|
|
function MediaElement() {
|
|
}
|
|
MediaElement.prototype.on = function (type, handler) {
|
|
throw new Error("Method not implemented.");
|
|
};
|
|
MediaElement.prototype.once = function (type, handler) {
|
|
throw new Error("Method not implemented.");
|
|
};
|
|
MediaElement.prototype.off = function (type, handler) {
|
|
throw new Error("Method not implemented.");
|
|
};
|
|
return MediaElement;
|
|
}());
|
|
exports.MediaElement = MediaElement;
|
|
//# sourceMappingURL=MediaElement.js.map
|