mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-15 16:06:41 +03:00
943bdb2b35
Resolves #1067
24 lines
428 B
JavaScript
24 lines
428 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for NetworkInformation which were missing in the
|
|
* Closure compiler.
|
|
*
|
|
* @externs
|
|
*/
|
|
|
|
|
|
/** @type {boolean} */
|
|
NetworkInformation.prototype.saveData;
|
|
|
|
/**
|
|
* @param {string} type
|
|
* @param {Function} listener
|
|
*/
|
|
NetworkInformation.prototype.addEventListener =
|
|
function(type, listener) {};
|