UNPKG

@antoniojps/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

12 lines 402 B
import { Parser } from '../../index.js'; import AnchoredSection from './AnchoredSection.js'; import { YTNode } from '../../helpers.js'; export default class KidsHomeScreen extends YTNode { static type = 'kidsHomeScreen'; anchors; constructor(data) { super(); this.anchors = Parser.parseArray(data.anchors, AnchoredSection); } } //# sourceMappingURL=KidsHomeScreen.js.map