mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 03:22:15 +00:00
14 lines
257 B
JavaScript
14 lines
257 B
JavaScript
'use strict';
|
|
|
|
//const Parser = require('..');
|
|
|
|
// TODO: implement all renderers related to this
|
|
class RichSection {
|
|
type = 'RichSection';
|
|
|
|
constructor(/* data */) {
|
|
// this.contents = Parser.parse(data.content);
|
|
}
|
|
}
|
|
|
|
module.exports = RichSection; |