Skip to content

Commit 90e6f49

Browse files
committed
Update LKG
1 parent 6c1c21f commit 90e6f49

13 files changed

+2135
-1250
lines changed

lib/enu/diagnosticMessages.generated.json.lcg

+6
Original file line numberDiff line numberDiff line change
@@ -3297,6 +3297,12 @@
32973297
</Str>
32983298
<Disp Icon="Str" />
32993299
</Item>
3300+
<Item ItemId=";Only_emit_d_ts_declaration_files_6014" ItemType="0" PsrId="306" Leaf="true">
3301+
<Str Cat="Text">
3302+
<Val><![CDATA[Only emit '.d.ts' declaration files.]]></Val>
3303+
</Str>
3304+
<Disp Icon="Str" />
3305+
</Item>
33003306
<Item ItemId=";Only_identifiers_Slashqualified_names_with_optional_type_arguments_are_currently_supported_in_a_clas_9002" ItemType="0" PsrId="306" Leaf="true">
33013307
<Str Cat="Text">
33023308
<Val><![CDATA[Only identifiers/qualified-names with optional type arguments are currently supported in a class 'extends' clause.]]></Val>

lib/lib.d.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -1012,12 +1012,12 @@ interface ReadonlyArray<T> {
10121012
* Combines two or more arrays.
10131013
* @param items Additional items to add to the end of array1.
10141014
*/
1015-
concat(...items: (T[] | ReadonlyArray<T>)[]): T[];
1015+
concat(...items: ConcatArray<T>[]): T[];
10161016
/**
10171017
* Combines two or more arrays.
10181018
* @param items Additional items to add to the end of array1.
10191019
*/
1020-
concat(...items: (T | T[] | ReadonlyArray<T>)[]): T[];
1020+
concat(...items: (T | ConcatArray<T>)[]): T[];
10211021
/**
10221022
* Adds all the elements of an array separated by the specified separator string.
10231023
* @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.
@@ -1107,6 +1107,13 @@ interface ReadonlyArray<T> {
11071107
readonly [n: number]: T;
11081108
}
11091109

1110+
interface ConcatArray<T> {
1111+
readonly length: number;
1112+
readonly [n: number]: T;
1113+
join(separator?: string): string;
1114+
slice(start?: number, end?: number): T[];
1115+
}
1116+
11101117
interface Array<T> {
11111118
/**
11121119
* Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.
@@ -1133,12 +1140,12 @@ interface Array<T> {
11331140
* Combines two or more arrays.
11341141
* @param items Additional items to add to the end of array1.
11351142
*/
1136-
concat(...items: (T[] | ReadonlyArray<T>)[]): T[];
1143+
concat(...items: ConcatArray<T>[]): T[];
11371144
/**
11381145
* Combines two or more arrays.
11391146
* @param items Additional items to add to the end of array1.
11401147
*/
1141-
concat(...items: (T | T[] | ReadonlyArray<T>)[]): T[];
1148+
concat(...items: (T | ConcatArray<T>)[]): T[];
11421149
/**
11431150
* Adds all the elements of an array separated by the specified separator string.
11441151
* @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.

lib/lib.es5.d.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -1012,12 +1012,12 @@ interface ReadonlyArray<T> {
10121012
* Combines two or more arrays.
10131013
* @param items Additional items to add to the end of array1.
10141014
*/
1015-
concat(...items: (T[] | ReadonlyArray<T>)[]): T[];
1015+
concat(...items: ConcatArray<T>[]): T[];
10161016
/**
10171017
* Combines two or more arrays.
10181018
* @param items Additional items to add to the end of array1.
10191019
*/
1020-
concat(...items: (T | T[] | ReadonlyArray<T>)[]): T[];
1020+
concat(...items: (T | ConcatArray<T>)[]): T[];
10211021
/**
10221022
* Adds all the elements of an array separated by the specified separator string.
10231023
* @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.
@@ -1107,6 +1107,13 @@ interface ReadonlyArray<T> {
11071107
readonly [n: number]: T;
11081108
}
11091109

1110+
interface ConcatArray<T> {
1111+
readonly length: number;
1112+
readonly [n: number]: T;
1113+
join(separator?: string): string;
1114+
slice(start?: number, end?: number): T[];
1115+
}
1116+
11101117
interface Array<T> {
11111118
/**
11121119
* Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.
@@ -1133,12 +1140,12 @@ interface Array<T> {
11331140
* Combines two or more arrays.
11341141
* @param items Additional items to add to the end of array1.
11351142
*/
1136-
concat(...items: (T[] | ReadonlyArray<T>)[]): T[];
1143+
concat(...items: ConcatArray<T>[]): T[];
11371144
/**
11381145
* Combines two or more arrays.
11391146
* @param items Additional items to add to the end of array1.
11401147
*/
1141-
concat(...items: (T | T[] | ReadonlyArray<T>)[]): T[];
1148+
concat(...items: (T | ConcatArray<T>)[]): T[];
11421149
/**
11431150
* Adds all the elements of an array separated by the specified separator string.
11441151
* @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.

lib/lib.es6.d.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -1012,12 +1012,12 @@ interface ReadonlyArray<T> {
10121012
* Combines two or more arrays.
10131013
* @param items Additional items to add to the end of array1.
10141014
*/
1015-
concat(...items: (T[] | ReadonlyArray<T>)[]): T[];
1015+
concat(...items: ConcatArray<T>[]): T[];
10161016
/**
10171017
* Combines two or more arrays.
10181018
* @param items Additional items to add to the end of array1.
10191019
*/
1020-
concat(...items: (T | T[] | ReadonlyArray<T>)[]): T[];
1020+
concat(...items: (T | ConcatArray<T>)[]): T[];
10211021
/**
10221022
* Adds all the elements of an array separated by the specified separator string.
10231023
* @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.
@@ -1107,6 +1107,13 @@ interface ReadonlyArray<T> {
11071107
readonly [n: number]: T;
11081108
}
11091109

1110+
interface ConcatArray<T> {
1111+
readonly length: number;
1112+
readonly [n: number]: T;
1113+
join(separator?: string): string;
1114+
slice(start?: number, end?: number): T[];
1115+
}
1116+
11101117
interface Array<T> {
11111118
/**
11121119
* Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.
@@ -1133,12 +1140,12 @@ interface Array<T> {
11331140
* Combines two or more arrays.
11341141
* @param items Additional items to add to the end of array1.
11351142
*/
1136-
concat(...items: (T[] | ReadonlyArray<T>)[]): T[];
1143+
concat(...items: ConcatArray<T>[]): T[];
11371144
/**
11381145
* Combines two or more arrays.
11391146
* @param items Additional items to add to the end of array1.
11401147
*/
1141-
concat(...items: (T | T[] | ReadonlyArray<T>)[]): T[];
1148+
concat(...items: (T | ConcatArray<T>)[]): T[];
11421149
/**
11431150
* Adds all the elements of an array separated by the specified separator string.
11441151
* @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

Comments
 (0)