mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
14 lines
226 B
JavaScript
14 lines
226 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
|
|
class Endscreen {
|
|
type = 'Endscreen';
|
|
|
|
constructor(data) {
|
|
this.elements = Parser.parse(data.elements);
|
|
this.start_ms = data.startMs;
|
|
}
|
|
}
|
|
|
|
module.exports = Endscreen; |