mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-22 22:18:14 +00:00
11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
export = MusicDescriptionShelf;
|
|
declare class MusicDescriptionShelf {
|
|
constructor(data: any);
|
|
type: string;
|
|
description: Text;
|
|
max_collapsed_lines: any;
|
|
max_expanded_lines: any;
|
|
footer: Text;
|
|
}
|
|
import Text = require("./Text");
|