@antoniojps/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
13 lines • 411 B
JavaScript
import { YTNode } from '../helpers.js';
import { Parser } from '../index.js';
export default class ChannelSwitcherPage extends YTNode {
static type = 'ChannelSwitcherPage';
header;
contents;
constructor(data) {
super();
this.header = Parser.parseItem(data.header);
this.contents = Parser.parse(data.contents, true);
}
}
//# sourceMappingURL=ChannelSwitcherPage.js.map