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