mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
25 lines
542 B
TypeScript
25 lines
542 B
TypeScript
export = EndscreenElement;
|
|
declare class EndscreenElement {
|
|
constructor(data: any);
|
|
type: string;
|
|
style: any;
|
|
image: any;
|
|
icon: any;
|
|
metadata: Text;
|
|
call_to_action: Text;
|
|
hovercard_button: any;
|
|
is_subscribe: any;
|
|
title: Text;
|
|
endpoint: NavigationEndpoint;
|
|
thumbnail_overlays: any;
|
|
left: any;
|
|
width: any;
|
|
top: any;
|
|
aspect_ratio: any;
|
|
start_ms: any;
|
|
end_ms: any;
|
|
id: any;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|