mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
export = PlayerErrorMessage;
|
|
declare class PlayerErrorMessage {
|
|
constructor(data: any);
|
|
type: string;
|
|
subreason: Text;
|
|
reason: Text;
|
|
proceed_button: any;
|
|
thumbnails: Thumbnail[];
|
|
icon_type: any;
|
|
}
|
|
import Text = require("./Text");
|
|
import Thumbnail = require("./Thumbnail");
|