mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
export = RichShelf;
|
|
declare class RichShelf {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: Text;
|
|
contents: any;
|
|
endpoint: NavigationEndpoint;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|