mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
18 lines
438 B
TypeScript
18 lines
438 B
TypeScript
export = ThumbnailOverlayToggleButton;
|
|
declare class ThumbnailOverlayToggleButton {
|
|
constructor(data: any);
|
|
type: string;
|
|
is_toggled: any;
|
|
icon_type: {
|
|
toggled: any;
|
|
untoggled: any;
|
|
};
|
|
tooltip: {
|
|
toggled: any;
|
|
untoggled: any;
|
|
};
|
|
toggled_endpoint: NavigationEndpoint;
|
|
untoggled_endpoint: NavigationEndpoint;
|
|
}
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|