mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import { YTNode } from '../helpers.js';
|
|
import type { RawNode } from '../types/index.js';
|
|
|
|
export default class CompositeVideoPrimaryInfo extends YTNode {
|
|
static type = 'CompositeVideoPrimaryInfo';
|
|
|
|
constructor(_data: RawNode) {
|
|
super();
|
|
}
|
|
}
|