@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines (13 loc) • 447 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import Button from './Button.js';
import NavigationEndpoint from './NavigationEndpoint.js';
import Text from './misc/Text.js';
export default class SearchBox extends YTNode {
static type: string;
endpoint: NavigationEndpoint;
search_button: Button | null;
clear_button: Button | null;
placeholder_text: Text;
constructor(data: RawNode);
}