innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
12 lines • 349 B
JavaScript
import { Parser } from '../index.js';
import { YTNode } from '../helpers.js';
class Endscreen extends YTNode {
constructor(data) {
super();
this.elements = Parser.parseArray(data.elements);
this.start_ms = data.startMs;
}
}
Endscreen.type = 'Endscreen';
export default Endscreen;
//# sourceMappingURL=Endscreen.js.map