mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
17 lines
446 B
TypeScript
17 lines
446 B
TypeScript
export = PlayerAnnotationsExpanded;
|
|
declare class PlayerAnnotationsExpanded {
|
|
constructor(data: any);
|
|
type: string;
|
|
featured_channel: {
|
|
start_time_ms: any;
|
|
end_time_ms: any;
|
|
watermark: any;
|
|
channel_name: any;
|
|
endpoint: NavigationEndpoint;
|
|
subscribe_button: any;
|
|
};
|
|
allow_swipe_dismiss: any;
|
|
annotation_id: any;
|
|
}
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|