mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
import { YTNode } from '../helpers.js';
|
|
import { Parser, type RawNode } from '../index.js';
|
|
|
|
export default class SingleColumnMusicWatchNextResults extends YTNode {
|
|
static type = 'SingleColumnMusicWatchNextResults';
|
|
|
|
contents;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.contents = Parser.parse(data);
|
|
}
|
|
} |