mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-22 05:58:14 +00:00
20 lines
469 B
TypeScript
20 lines
469 B
TypeScript
export = GridVideo;
|
|
declare class GridVideo {
|
|
constructor(data: any);
|
|
type: string;
|
|
id: any;
|
|
title: Text;
|
|
thumbnails: any;
|
|
thumbnail_overlays: any;
|
|
published: Text;
|
|
duration: string | Text;
|
|
author: Author;
|
|
views: Text;
|
|
short_view_count: Text;
|
|
endpoint: NavigationEndpoint;
|
|
menu: any;
|
|
}
|
|
import Text = require("./Text");
|
|
import Author = require("./Author");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|