feat(parser): Add UnifiedSharePanel

This commit is contained in:
Luan
2024-11-10 04:08:23 -03:00
parent fdb754043b
commit 4a1397f1bc
7 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import type { RawNode } from '../index.js';
import { YTNode } from '../helpers.js';
import { Text } from '../misc.js';
export default class StartAt extends YTNode {
static type = 'StartAt';
public start_at_option_label: Text;
constructor(data: RawNode) {
super();
this.start_at_option_label = new Text(data.startAtOptionLabel);
}
}