Files
YouTube.js/deno/src/parser/classes/SecondarySearchContainer.ts
2023-04-29 05:15:47 +00:00

13 lines
360 B
TypeScript

import Parser, { type RawNode } from '../index.ts';
import { type ObservedArray, YTNode } from '../helpers.ts';
export default class SecondarySearchContainer extends YTNode {
static type = 'SecondarySearchContainer';
contents: ObservedArray<YTNode>;
constructor(data: RawNode) {
super();
this.contents = Parser.parseArray(data.contents);
}
}