chore: regenerate type declarations

This commit is contained in:
LuanRT
2022-06-18 05:10:53 -03:00
parent 5af2a9972e
commit 1d2c1ed69b
112 changed files with 335 additions and 1596 deletions

View File

@@ -0,0 +1,11 @@
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");