Files
shaka-player/externs/tizen.js
T
Álvaro Velad Galván ff1ef7c262 feat: Add HDR detection in Tizen and WebOS (#8680)
Close #8441

---------

Co-authored-by: Wojciech Tyczyński <tykus160@gmail.com>
2025-06-04 12:34:59 +02:00

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() {};