Files
YouTube.js/typings/lib/parser/contents/classes/EndscreenElement.d.ts
2022-06-06 04:20:28 -03:00

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");