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

12 lines
280 B
TypeScript

export = ReelShelf;
declare class ReelShelf {
constructor(data: any);
type: string;
title: Text;
items: any;
endpoint: NavigationEndpoint;
get contents(): any;
}
import Text = require("./Text");
import NavigationEndpoint = require("./NavigationEndpoint");