mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
14 lines
350 B
TypeScript
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);
|
|
}
|
|
} |