mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 03:22:15 +00:00
23 lines
655 B
TypeScript
23 lines
655 B
TypeScript
import { YTNode } from '../helpers.js';
|
|
import { Text } from '../misc.js';
|
|
|
|
import type { RawNode } from '../index.js';
|
|
|
|
export default class ExpandableVideoDescriptionBody extends YTNode {
|
|
static type = 'ExpandableVideoDescriptionBody';
|
|
|
|
show_more_text: Text;
|
|
show_less_text: Text;
|
|
attributed_description_body_text?: string;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.show_more_text = new Text(data.showMoreText);
|
|
this.show_less_text = new Text(data.showLessText);
|
|
|
|
if (Reflect.has(data, 'attributedDescriptionBodyText')) {
|
|
this.attributed_description_body_text = data.attributedDescriptionBodyText?.content;
|
|
}
|
|
}
|
|
}
|