@antoniojps/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
26 lines • 1.14 kB
JavaScript
import { YTNode } from '../helpers.js';
import { Parser } from '../index.js';
import Thumbnail from './misc/Thumbnail.js';
import NavigationEndpoint from './NavigationEndpoint.js';
export default class PlayerAnnotationsExpanded extends YTNode {
static type = 'PlayerAnnotationsExpanded';
featured_channel;
allow_swipe_dismiss;
annotation_id;
constructor(data) {
super();
if (Reflect.has(data, 'featuredChannel')) {
this.featured_channel = {
start_time_ms: data.featuredChannel.startTimeMs,
end_time_ms: data.featuredChannel.endTimeMs,
watermark: Thumbnail.fromResponse(data.featuredChannel.watermark),
channel_name: data.featuredChannel.channelName,
endpoint: new NavigationEndpoint(data.featuredChannel.navigationEndpoint),
subscribe_button: Parser.parseItem(data.featuredChannel.subscribeButton)
};
}
this.allow_swipe_dismiss = data.allowSwipeDismiss;
this.annotation_id = data.annotationId;
}
}
//# sourceMappingURL=PlayerAnnotationsExpanded.js.map