innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
15 lines • 414 B
JavaScript
import { YTNode } from '../helpers.js';
import { Parser } from '../index.js';
class ProfileColumn extends YTNode {
constructor(data) {
super();
this.items = Parser.parseArray(data.items);
}
// XXX: Alias for consistency.
get contents() {
return this.items;
}
}
ProfileColumn.type = 'ProfileColumn';
export default ProfileColumn;
//# sourceMappingURL=ProfileColumn.js.map