mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
12 lines
234 B
JavaScript
12 lines
234 B
JavaScript
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; |