mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
15 lines
369 B
TypeScript
15 lines
369 B
TypeScript
export = GridChannel;
|
|
declare class GridChannel {
|
|
constructor(data: any);
|
|
type: string;
|
|
id: any;
|
|
author: Author;
|
|
subscribers: Text;
|
|
video_count: Text;
|
|
endpoint: NavigationEndpoint;
|
|
subscribe_button: any;
|
|
}
|
|
import Author = require("./Author");
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|