mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
export = VideoOwner;
|
|
declare class VideoOwner {
|
|
constructor(data: any);
|
|
type: string;
|
|
subscription_button: any;
|
|
subscriber_count: Text;
|
|
author: Author;
|
|
}
|
|
import Text = require("./Text");
|
|
import Author = require("./Author");
|