mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 03:22:15 +00:00
14 lines
227 B
JavaScript
14 lines
227 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
|
|
class Element {
|
|
type = 'Element';
|
|
|
|
constructor(data) {
|
|
const type = data.newElement.type.componentType;
|
|
return Parser.parse(type.model);
|
|
}
|
|
}
|
|
|
|
module.exports = Element; |