mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
14 lines
399 B
TypeScript
14 lines
399 B
TypeScript
import { YTNode } from '../helpers.js';
|
|
import { Parser, type RawNode } from '../index.js';
|
|
import PlayerOverflow from './PlayerOverflow.js';
|
|
|
|
export default class PlayerControlsOverlay extends YTNode {
|
|
static type = 'PlayerControlsOverlay';
|
|
|
|
overflow: PlayerOverflow | null;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.overflow = Parser.parseItem(data.overflow, PlayerOverflow);
|
|
}
|
|
} |