mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-23 14:38:07 +00:00
21 lines
512 B
TypeScript
21 lines
512 B
TypeScript
export = PlayerOverlayAutoplay;
|
|
declare class PlayerOverlayAutoplay {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: Text;
|
|
video_id: any;
|
|
video_title: Text;
|
|
short_view_count: Text;
|
|
prefer_immediate_redirect: any;
|
|
count_down_secs_for_fullscreen: any;
|
|
published: Text;
|
|
background: any;
|
|
thumbnail_overlays: any;
|
|
author: Author;
|
|
cancel_button: any;
|
|
next_button: any;
|
|
close_button: any;
|
|
}
|
|
import Text = require("./Text");
|
|
import Author = require("./Author");
|