UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

16 lines (15 loc) 462 B
import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; import Button from './Button.js'; import Text from './misc/Text.js'; import Thumbnail from './misc/Thumbnail.js'; export default class ChannelAgeGate extends YTNode { static type: string; channel_title: string; avatar: Thumbnail[]; header: Text; main_text: Text; sign_in_button: Button | null; secondary_text: Text; constructor(data: RawNode); }