UNPKG

shaka-player

Version:
52 lines (35 loc) 932 B
/*! @license * Shaka Player * Copyright 2016 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview Externs for picture-in-picture methods. * @externs */ /** * @return {!Promise} */ HTMLDocument.prototype.exitPictureInPicture = function() {}; /** @type {Element} */ HTMLDocument.prototype.pictureInPictureElement; /** @type {boolean} */ HTMLDocument.prototype.pictureInPictureEnabled; /** * @return {!Promise} */ HTMLMediaElement.prototype.requestPictureInPicture = function() {}; /** @type {boolean} */ HTMLMediaElement.prototype.disablePictureInPicture; /** * @param {string} mode * @return {boolean} */ HTMLMediaElement.prototype.webkitSetPresentationMode = function(mode) {}; /** * @param {string} mode * @return {boolean} */ HTMLMediaElement.prototype.webkitSupportsPresentationMode = function(mode) {}; /** @type {string} */ HTMLMediaElement.prototype.webkitPresentationMode;