Skip to content

Commit 1d28c88

Browse files
authored
Merge pull request #15276 from reiner-dolp/master
Fixes issues #15275 #10452
2 parents e8fd1cf + eb36455 commit 1d28c88

File tree

1 file changed

+1
-64
lines changed

1 file changed

+1
-64
lines changed

src/lib/es5.d.ts

Lines changed: 1 addition & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1742,13 +1742,6 @@ interface Int8Array {
17421742
*/
17431743
reverse(): Int8Array;
17441744

1745-
/**
1746-
* Sets a value or an array of values.
1747-
* @param index The index of the location to set.
1748-
* @param value The value to set.
1749-
*/
1750-
set(index: number, value: number): void;
1751-
17521745
/**
17531746
* Sets a value or an array of values.
17541747
* @param array A typed or untyped array of values to set.
@@ -2033,13 +2026,6 @@ interface Uint8Array {
20332026
*/
20342027
reverse(): Uint8Array;
20352028

2036-
/**
2037-
* Sets a value or an array of values.
2038-
* @param index The index of the location to set.
2039-
* @param value The value to set.
2040-
*/
2041-
set(index: number, value: number): void;
2042-
20432029
/**
20442030
* Sets a value or an array of values.
20452031
* @param array A typed or untyped array of values to set.
@@ -2325,19 +2311,12 @@ interface Uint8ClampedArray {
23252311
*/
23262312
reverse(): Uint8ClampedArray;
23272313

2328-
/**
2329-
* Sets a value or an array of values.
2330-
* @param index The index of the location to set.
2331-
* @param value The value to set.
2332-
*/
2333-
set(index: number, value: number): void;
2334-
23352314
/**
23362315
* Sets a value or an array of values.
23372316
* @param array A typed or untyped array of values to set.
23382317
* @param offset The index in the current array at which the values are to be written.
23392318
*/
2340-
set(array: Uint8ClampedArray, offset?: number): void;
2319+
set(array: ArrayLike<number>, offset?: number): void;
23412320

23422321
/**
23432322
* Returns a section of an array.
@@ -2616,13 +2595,6 @@ interface Int16Array {
26162595
*/
26172596
reverse(): Int16Array;
26182597

2619-
/**
2620-
* Sets a value or an array of values.
2621-
* @param index The index of the location to set.
2622-
* @param value The value to set.
2623-
*/
2624-
set(index: number, value: number): void;
2625-
26262598
/**
26272599
* Sets a value or an array of values.
26282600
* @param array A typed or untyped array of values to set.
@@ -2908,13 +2880,6 @@ interface Uint16Array {
29082880
*/
29092881
reverse(): Uint16Array;
29102882

2911-
/**
2912-
* Sets a value or an array of values.
2913-
* @param index The index of the location to set.
2914-
* @param value The value to set.
2915-
*/
2916-
set(index: number, value: number): void;
2917-
29182883
/**
29192884
* Sets a value or an array of values.
29202885
* @param array A typed or untyped array of values to set.
@@ -3199,13 +3164,6 @@ interface Int32Array {
31993164
*/
32003165
reverse(): Int32Array;
32013166

3202-
/**
3203-
* Sets a value or an array of values.
3204-
* @param index The index of the location to set.
3205-
* @param value The value to set.
3206-
*/
3207-
set(index: number, value: number): void;
3208-
32093167
/**
32103168
* Sets a value or an array of values.
32113169
* @param array A typed or untyped array of values to set.
@@ -3490,13 +3448,6 @@ interface Uint32Array {
34903448
*/
34913449
reverse(): Uint32Array;
34923450

3493-
/**
3494-
* Sets a value or an array of values.
3495-
* @param index The index of the location to set.
3496-
* @param value The value to set.
3497-
*/
3498-
set(index: number, value: number): void;
3499-
35003451
/**
35013452
* Sets a value or an array of values.
35023453
* @param array A typed or untyped array of values to set.
@@ -3781,13 +3732,6 @@ interface Float32Array {
37813732
*/
37823733
reverse(): Float32Array;
37833734

3784-
/**
3785-
* Sets a value or an array of values.
3786-
* @param index The index of the location to set.
3787-
* @param value The value to set.
3788-
*/
3789-
set(index: number, value: number): void;
3790-
37913735
/**
37923736
* Sets a value or an array of values.
37933737
* @param array A typed or untyped array of values to set.
@@ -4073,13 +4017,6 @@ interface Float64Array {
40734017
*/
40744018
reverse(): Float64Array;
40754019

4076-
/**
4077-
* Sets a value or an array of values.
4078-
* @param index The index of the location to set.
4079-
* @param value The value to set.
4080-
*/
4081-
set(index: number, value: number): void;
4082-
40834020
/**
40844021
* Sets a value or an array of values.
40854022
* @param array A typed or untyped array of values to set.

0 commit comments

Comments
 (0)