Files
YouTube.js/typings/lib/parser/classes/Shelf.d.ts
2022-07-11 06:13:21 -03:00

13 lines
284 B
TypeScript

export = Shelf;
declare class Shelf {
constructor(data: any);
type: string;
title: Text;
endpoint: NavigationEndpoint;
content: any;
icon_type: any;
menu: any;
}
import Text = require("./Text");
import NavigationEndpoint = require("./NavigationEndpoint");