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