Changed return type for registry.byId()

This commit is contained in:
jandic
2015-05-13 19:15:07 +02:00
parent 846a250e0a
commit c18e95ed4f
+5 -5
View File
@@ -34291,7 +34291,7 @@ declare module dijit {
*
* @param id
*/
byId(id: String): any;
byId(id: String): dijit._WidgetBase;
/**
* A synthetic clone of array.every acting explicitly on this WidgetSet
*
@@ -105714,14 +105714,14 @@ declare module dijit {
*
* @param id
*/
byId(id: String): String;
byId(id: String): dijit._WidgetBase;
/**
* Find a widget by it's id.
* If passed a widget then just returns the widget.
*
* @param id
*/
byId(id: dijit._WidgetBase): String;
byId(id: dijit._WidgetBase): dijit._WidgetBase;
/**
* Returns the widget corresponding to the given DOMNode
*
@@ -105956,14 +105956,14 @@ declare module dijit {
*
* @param id
*/
byId(id: String): String;
byId(id: String): dijit._WidgetBase;
/**
* Find a widget by it's id.
* If passed a widget then just returns the widget.
*
* @param id
*/
byId(id: dijit._WidgetBase): String;
byId(id: dijit._WidgetBase): dijit._WidgetBase;
/**
* Returns the widget corresponding to the given DOMNode
*