mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
'use strict';
|
|
|
|
const TwoColumnBrowseResults = require('./TwoColumnBrowseResults');
|
|
|
|
class WatchNextTabbedResults extends TwoColumnBrowseResults {
|
|
type = 'WatchNextTabbedResults';
|
|
|
|
constructor(data) {
|
|
super(data);
|
|
}
|
|
}
|
|
|
|
module.exports = WatchNextTabbedResults; |