Files
shaka-player/externs/tizen.js
T
Joey Parrish 5da5de2800 feat: Expose the maximum hardware resolution through probeSupport() (#6569)
This makes it easier to debug hardware resolution issues through the
support page, which can now show hardware resolution. To show the
support page on Chromecast devices, use chromecast-webdriver-cli.
2024-05-09 10:43:37 -07:00

42 lines
554 B
JavaScript

/*! @license
* Shaka Player
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Externs for Tizen
* @externs
*/
/** @const */
var webapis = {};
/** @const */
webapis.systeminfo = {};
/**
* @return {shaka.extern.Resolution}
*/
webapis.systeminfo.getMaxVideoResolution = function() {};
/** @const */
webapis.productinfo = {};
/**
* @return {boolean}
*/
webapis.productinfo.is8KPanelSupported = function() {};
/**
* @return {boolean}
*/
webapis.productinfo.isUdPanelSupported = function() {};