mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-22 05:58:14 +00:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
export = MusicPlayButton;
|
|
declare class MusicPlayButton {
|
|
constructor(data: any);
|
|
type: string;
|
|
endpoint: NavigationEndpoint;
|
|
play_icon_type: any;
|
|
pause_icon_type: any;
|
|
play_label: any;
|
|
pause_label: any;
|
|
icon_color: any;
|
|
}
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|