You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gulp.task("lssl","Builds language service server library",[tsserverLibraryFile]);
489
499
gulp.task("local","Builds the full compiler and services",[builtLocalCompiler,servicesFile,serverFile,builtGeneratedDiagnosticMessagesJSON,tsserverLibraryFile]);
490
500
gulp.task("tsc","Builds only the compiler",[builtLocalCompiler]);
// Shell out to `gulp`, since we do the work to handle sourcemaps correctly w/o inline maps there
963
+
varcmd='gulp browserify --silent';
966
964
exec(cmd);
967
965
},{async: true});
968
966
969
967
desc("Runs the tests using the built run.js file like 'jake runtests'. Syntax is jake runtests-browser. Additional optional parameters tests=[regex], browser=[chrome|IE]");
* @param items Additional items to add to the end of array1.
1002
1002
*/
1003
-
concat(...items: T[][]): T[];
1003
+
concat(...items: ReadonlyArray<T>[]): T[];
1004
1004
/**
1005
1005
* Combines two or more arrays.
1006
1006
* @param items Additional items to add to the end of array1.
1007
1007
*/
1008
-
concat(...items: (T | T[])[]): T[];
1008
+
concat(...items: (T | ReadonlyArray<T>)[]): T[];
1009
1009
/**
1010
1010
* Adds all the elements of an array separated by the specified separator string.
1011
1011
* @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.
@@ -1119,12 +1119,12 @@ interface Array<T> {
1119
1119
* Combines two or more arrays.
1120
1120
* @param items Additional items to add to the end of array1.
1121
1121
*/
1122
-
concat(...items: T[][]): T[];
1122
+
concat(...items: ReadonlyArray<T>[]): T[];
1123
1123
/**
1124
1124
* Combines two or more arrays.
1125
1125
* @param items Additional items to add to the end of array1.
1126
1126
*/
1127
-
concat(...items: (T | T[])[]): T[];
1127
+
concat(...items: (T | ReadonlyArray<T>)[]): T[];
1128
1128
/**
1129
1129
* Adds all the elements of an array separated by the specified separator string.
1130
1130
* @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.
0 commit comments