UNPKG

@imput/youtubei.js

Version:

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

12 lines 414 B
import { YTNode } from '../helpers.js'; import { Parser } from '../index.js'; import ChipCloudChip from './ChipCloudChip.js'; class FeedFilterChipBar extends YTNode { constructor(data) { super(); this.contents = Parser.parseArray(data.contents, ChipCloudChip); } } FeedFilterChipBar.type = 'FeedFilterChipBar'; export default FeedFilterChipBar; //# sourceMappingURL=FeedFilterChipBar.js.map