@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines (13 loc) • 422 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 SingleActionEmergencySupport extends YTNode {
static type: string;
action_text: Text;
nav_text: Text;
details: Text;
icon_type: string;
endpoint: NavigationEndpoint;
constructor(data: RawNode);
}