Fixed compilation issue

This commit is contained in:
jandic
2015-05-22 15:46:23 +02:00
parent fcec5c6857
commit 95eac2d4ed

8
dojo/dojo.d.ts vendored
View File

@@ -5051,7 +5051,7 @@ declare module dojo {
* @param thisObject Optionalmay be used to scope the call to callback
* @param Ctr
*/
map(arr: any[], callback: Function, thisObject?: Object, Ctr: any): any[];
map(arr: any[], callback: Function, thisObject: Object, Ctr: any): any[];
/**
* applies callback to each element of arr and returns
* an Array with the results
@@ -5066,7 +5066,7 @@ declare module dojo {
* @param thisObject Optionalmay be used to scope the call to callback
* @param Ctr
*/
map(arr: String, callback: Function, thisObject?: Object, Ctr: any): any[];
map(arr: String, callback: Function, thisObject: Object, Ctr: any): any[];
/**
* applies callback to each element of arr and returns
* an Array with the results
@@ -5081,7 +5081,7 @@ declare module dojo {
* @param thisObject Optionalmay be used to scope the call to callback
* @param Ctr
*/
map(arr: any[], callback: String, thisObject?: Object, Ctr: any): any[];
map(arr: any[], callback: String, thisObject: Object, Ctr: any): any[];
/**
* applies callback to each element of arr and returns
* an Array with the results
@@ -5096,7 +5096,7 @@ declare module dojo {
* @param thisObject Optionalmay be used to scope the call to callback
* @param Ctr
*/
map(arr: String, callback: String, thisObject?: Object, Ctr: any): any[];
map(arr: String, callback: String, thisObject: Object, Ctr: any): any[];
/**
* Determines whether or not any item in arr satisfies the
* condition implemented by callback.