UNPKG

@imput/youtubei.js

Version:

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

13 lines (12 loc) 317 B
import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; import Text from './misc/Text.js'; export default class Quiz extends YTNode { static type: string; choices: { text: Text; is_correct: boolean; }[]; total_votes: Text; constructor(data: RawNode); }