mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +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
256 B
TypeScript
10 lines
256 B
TypeScript
import type { RawNode } from '../index.js';
|
|
import SearchSuggestion from './SearchSuggestion.js';
|
|
|
|
export default class HistorySuggestion extends SearchSuggestion {
|
|
static type = 'HistorySuggestion';
|
|
|
|
constructor(data: RawNode) {
|
|
super(data);
|
|
}
|
|
} |