mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 11:32:27 +00:00
13 lines
342 B
TypeScript
13 lines
342 B
TypeScript
import { Parser, type RawNode } from '../index.js';
|
|
import { type ObservedArray, YTNode } from '../helpers.js';
|
|
|
|
export default class RichMetadataRow extends YTNode {
|
|
static type = 'RichMetadataRow';
|
|
|
|
contents: ObservedArray<YTNode>;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.contents = Parser.parseArray(data.contents);
|
|
}
|
|
} |