mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 03:22:15 +00:00
15 lines
279 B
JavaScript
15 lines
279 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
const Text = require('./Text');
|
|
|
|
class SubFeedSelector {
|
|
type = 'SubFeedSelector';
|
|
|
|
constructor(data) {
|
|
this.title = new Text(data.title);
|
|
this.options = Parser.parse(data.options);
|
|
}
|
|
}
|
|
|
|
module.exports = SubFeedSelector; |