chore: update type definitions

This commit is contained in:
LuanRT
2022-06-08 20:12:48 -03:00
parent 4ee6ec0d20
commit 018092eb78
24 changed files with 354 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
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");