@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
19 lines (18 loc) • 604 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import Thumbnail from './misc/Thumbnail.js';
import NavigationEndpoint from './NavigationEndpoint.js';
export default class PlayerAnnotationsExpanded extends YTNode {
static type: string;
featured_channel?: {
start_time_ms: number;
end_time_ms: number;
watermark: Thumbnail[];
channel_name: string;
endpoint: NavigationEndpoint;
subscribe_button: YTNode | null;
};
allow_swipe_dismiss: boolean;
annotation_id: string;
constructor(data: RawNode);
}