mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
25 lines
858 B
TypeScript
25 lines
858 B
TypeScript
import Text from './misc/Text.js';
|
|
import NavigationEndpoint from './NavigationEndpoint.js';
|
|
import { YTNode } from '../helpers.js';
|
|
import type { RawNode } from '../index.js';
|
|
|
|
export default class ToggleMenuServiceItem extends YTNode {
|
|
static type = 'ToggleMenuServiceItem';
|
|
|
|
text: Text;
|
|
toggled_text: Text;
|
|
icon_type: string;
|
|
toggled_icon_type: string;
|
|
default_endpoint: NavigationEndpoint;
|
|
toggled_endpoint: NavigationEndpoint;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.text = new Text(data.defaultText);
|
|
this.toggled_text = new Text(data.toggledText);
|
|
this.icon_type = data.defaultIcon.iconType;
|
|
this.toggled_icon_type = data.toggledIcon.iconType;
|
|
this.default_endpoint = new NavigationEndpoint(data.defaultServiceEndpoint);
|
|
this.toggled_endpoint = new NavigationEndpoint(data.toggledServiceEndpoint);
|
|
}
|
|
} |