mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
export = WatchCardRichHeader;
|
|
declare class WatchCardRichHeader {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: Text;
|
|
title_endpoint: NavigationEndpoint;
|
|
subtitle: Text;
|
|
author: Author;
|
|
style: any;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|
|
import Author = require("./Author");
|