Files
YouTube.js/src/parser/classes/StartAt.ts
2024-11-10 04:08:23 -03:00

14 lines
350 B
TypeScript

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);
}
}