mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-20 04:51:16 +00:00
12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
export = SearchSuggestion;
|
|
declare class SearchSuggestion {
|
|
constructor(data: any);
|
|
type: string;
|
|
suggestion: Text;
|
|
endpoint: NavigationEndpoint;
|
|
icon_type: any;
|
|
service_endpoint: NavigationEndpoint;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|