UNPKG

@np-dev/youtubei-js

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

16 lines (15 loc) 503 B
import Text from './misc/Text.js'; import Thumbnail from './misc/Thumbnail.js'; import NavigationEndpoint from './NavigationEndpoint.js'; import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; export default class MacroMarkersListItem extends YTNode { static type: string; title: Text; time_description: Text; thumbnail: Thumbnail[]; on_tap_endpoint: NavigationEndpoint; layout: string; is_highlighted: boolean; constructor(data: RawNode); }