mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
* tests: improve coverage * refactor: clean up nodes * chore: lint * feat(parser): ignore `BrandVideoShelf` Seems to be used for ads. * feat(parser): ignore `BrandVideoSingleton` too
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import type { RawNode } from '../index.js';
|
|
import TwoColumnBrowseResults from './TwoColumnBrowseResults.js';
|
|
|
|
export default class WatchNextTabbedResults extends TwoColumnBrowseResults {
|
|
static type = 'WatchNextTabbedResults';
|
|
|
|
constructor(data: RawNode) {
|
|
super(data);
|
|
}
|
|
} |