mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
export = SearchBox;
|
|
declare class SearchBox {
|
|
constructor(data: any);
|
|
type: string;
|
|
endpoint: NavigationEndpoint;
|
|
search_button: any;
|
|
clear_button: any;
|
|
placeholder_text: Text;
|
|
}
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|
|
import Text = require("./Text");
|