mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
ff1ef7c262
Close #8441 --------- Co-authored-by: Wojciech Tyczyński <tykus160@gmail.com>
52 lines
669 B
JavaScript
52 lines
669 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() {};
|
|
|
|
|
|
/** @const */
|
|
webapis.avinfo = {};
|
|
|
|
|
|
/**
|
|
* @return {boolean}
|
|
*/
|
|
webapis.avinfo.isHdrTvSupport = function() {};
|
|
|