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
Arthur Ozga <aozgaa@umich.edu> Arthur Ozga <t-arthoz@microsoft.com> Arthur Ozga <aozgaa-ms@outlook.com> Arthur Ozga <aozgaa@users.noreply.github.com> Arthur Ozga <arozga@microsoft.com>
22
24
Asad Saeeduddin <masaeedu@gmail.com>
@@ -26,6 +28,7 @@ Bill Ticehurst <billti@hotmail.com> Bill Ticehurst <billti@microsoft.com>
26
28
Ben Duffield <jebavarde@gmail.com>
27
29
Ben Mosher <me@benmosher.com>
28
30
Benjamin Bock <bb@users.noreply.github.com>
31
+
Benjamin Lichtman <uniqueiniquity@users.noreply.github.com> uniqueiniquity <blichtman623@gmail.com>
29
32
Blake Embrey <hello@blakeembrey.com>
30
33
Bowden Kelly <wilkelly@microsoft.com>
31
34
Brett Mayen <bmayen@midnightsnacks.net>
@@ -59,6 +62,7 @@ Evan Sebastian <evanlhoini@gmail.com>
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]);
@@ -776,7 +786,7 @@ gulp.task("browserify", "Runs browserify on run.js to produce a file suitable fo
776
786
constfile=newVinyl({ contents,path: bundlePath});
777
787
console.log(`Fixing sourcemaps for ${file.path}`);
778
788
// assumes contents is a Buffer, since that's what browserify yields
* @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