mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-22 22:18:14 +00:00
14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
import { YTNode, type ObservedArray } from '../helpers.js';
|
|
import { Parser, type RawNode } from '../index.js';
|
|
import Tab from './Tab.js';
|
|
|
|
export default class SingleColumnBrowseResults extends YTNode {
|
|
static type = 'SingleColumnBrowseResults';
|
|
|
|
tabs: ObservedArray<Tab>;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.tabs = Parser.parseArray(data.tabs, Tab);
|
|
}
|
|
} |