mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
18 lines
333 B
JavaScript
18 lines
333 B
JavaScript
import Parser from '../index';
|
|
import { YTNode } from '../helpers';
|
|
|
|
class ProfileColumn extends YTNode {
|
|
static type = 'ProfileColumn';
|
|
|
|
constructor(data) {
|
|
super();
|
|
this.items = Parser.parse(data.items);
|
|
}
|
|
|
|
// XXX: alias for consistency
|
|
get contents() {
|
|
return this.items;
|
|
}
|
|
}
|
|
|
|
export default ProfileColumn; |