$$() returns webix.ui.baseview instead of webix.ui.view

Reason :
	if you call $$('layoutId'), webix returns a webix.ui.baselayout
	baselayout and all views are based on baseview
	==> baseview is thus a more generic typing
This commit is contained in:
Pascal Thomet 2015-04-15 13:56:29 +02:00
parent d633851cb8
commit ccdf2ae2d7

2
webix/webix.d.ts vendored
View File

@ -7530,4 +7530,4 @@ interface window extends webix.ui.baseview{
}}
declare function $$(id: string|Event|HTMLElement):webix.ui.view;
declare function $$(id: string|Event|HTMLElement):webix.ui.baseview;