mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-22 14:08:06 +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
226 B
TypeScript
10 lines
226 B
TypeScript
import Button from '../Button.js';
|
|
import type { RawNode } from '../../index.js';
|
|
|
|
export default class MenuServiceItem extends Button {
|
|
static type = 'MenuServiceItem';
|
|
|
|
constructor(data: RawNode) {
|
|
super(data);
|
|
}
|
|
} |