mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-23 23:09:28 +00:00
10 lines
251 B
TypeScript
10 lines
251 B
TypeScript
export = DidYouMean;
|
|
declare class DidYouMean {
|
|
constructor(data: any);
|
|
type: string;
|
|
corrected_query: Text;
|
|
endpoint: NavigationEndpoint;
|
|
}
|
|
import Text = require("./Text");
|
|
import NavigationEndpoint = require("./NavigationEndpoint");
|