UNPKG

@np-dev/youtubei-js

Version:

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

15 lines 510 B
import { Parser } from '../../index.js'; import { YTNode } from '../../helpers.js'; class MultiPageMenuNotificationSection extends YTNode { constructor(data) { super(); this.items = Parser.parse(data.items); } // XXX: Alias for consistency. get contents() { return this.items; } } MultiPageMenuNotificationSection.type = 'MultiPageMenuNotificationSection'; export default MultiPageMenuNotificationSection; //# sourceMappingURL=MultiPageMenuNotificationSection.js.map