mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
export = VideoSecondaryInfo;
|
|
declare class VideoSecondaryInfo {
|
|
constructor(data: any);
|
|
type: string;
|
|
owner: any;
|
|
description: Text;
|
|
subscribe_button: any;
|
|
metadata: any;
|
|
show_more_text: any;
|
|
show_less_text: any;
|
|
default_expanded: any;
|
|
description_collapsed_lines: any;
|
|
}
|
|
import Text = require("./Text");
|