mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-21 13:31:36 +00:00
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
import { Parser, type RawNode } from '../index.js';
|
|
import { YTNode } from '../helpers.js';
|
|
|
|
export default class RelatedChipCloud extends YTNode {
|
|
static type = 'RelatedChipCloud';
|
|
|
|
content: YTNode;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.content = Parser.parseItem(data.content);
|
|
}
|
|
} |