Files
shaka-player/externs/mdl.js
T
Joey Parrish e7173960a7 demo: Change the menu icon to settings icon
The menu icon does not give any clue what is in the menu.  A settings
icon is much clearer, and hopefully will make the demo settings easier
to discover.

Change-Id: I198a1f628d11533c8f97dc861c1e8ecb55fa46e1
2020-10-06 18:55:11 +00:00

33 lines
525 B
JavaScript

/*! @license
* Shaka Player
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Externs for MDL methods.
* @externs
*/
/** @const */
const componentHandler = class {
/** @const */
static upgradeDom() {}
};
/** @constructor */
const MaterialLayout = class {
toggleDrawer() {}
};
/** @const */
MaterialLayout.prototype.Constant_ = {};
/** @type {string} */
MaterialLayout.prototype.Constant_.MENU_ICON;
/** @const {?MaterialLayout} */
Element.prototype.MaterialLayout;