mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 11:32:27 +00:00
* replaced YTNode's data arg as RawNode * updated documentation * removed unused import ---- Note that there are still many nodes that need to be updated, hence the WIP status.
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import { YTNode } from '../../helpers.js';
|
|
import type { RawNode } from '../../index.js';
|
|
class MusicMenuItemDivider extends YTNode {
|
|
static type = 'MusicMenuItemDivider';
|
|
|
|
// eslint-disable-next-line
|
|
constructor(data: RawNode) {
|
|
super();
|
|
}
|
|
}
|
|
|
|
export default MusicMenuItemDivider; |