Skip to content

Commit

Permalink
Merge pull request #15276 from reiner-dolp/master
Browse files Browse the repository at this point in the history
Fixes issues #15275 #10452
  • Loading branch information
mhegazy authored Apr 19, 2017
2 parents e8fd1cf + eb36455 commit 1d28c88
Showing 1 changed file with 1 addition and 64 deletions.
65 changes: 1 addition & 64 deletions src/lib/es5.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1742,13 +1742,6 @@ interface Int8Array {
*/
reverse(): Int8Array;

/**
* Sets a value or an array of values.
* @param index The index of the location to set.
* @param value The value to set.
*/
set(index: number, value: number): void;

/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
Expand Down Expand Up @@ -2033,13 +2026,6 @@ interface Uint8Array {
*/
reverse(): Uint8Array;

/**
* Sets a value or an array of values.
* @param index The index of the location to set.
* @param value The value to set.
*/
set(index: number, value: number): void;

/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
Expand Down Expand Up @@ -2325,19 +2311,12 @@ interface Uint8ClampedArray {
*/
reverse(): Uint8ClampedArray;

/**
* Sets a value or an array of values.
* @param index The index of the location to set.
* @param value The value to set.
*/
set(index: number, value: number): void;

/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
* @param offset The index in the current array at which the values are to be written.
*/
set(array: Uint8ClampedArray, offset?: number): void;
set(array: ArrayLike<number>, offset?: number): void;

/**
* Returns a section of an array.
Expand Down Expand Up @@ -2616,13 +2595,6 @@ interface Int16Array {
*/
reverse(): Int16Array;

/**
* Sets a value or an array of values.
* @param index The index of the location to set.
* @param value The value to set.
*/
set(index: number, value: number): void;

/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
Expand Down Expand Up @@ -2908,13 +2880,6 @@ interface Uint16Array {
*/
reverse(): Uint16Array;

/**
* Sets a value or an array of values.
* @param index The index of the location to set.
* @param value The value to set.
*/
set(index: number, value: number): void;

/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
Expand Down Expand Up @@ -3199,13 +3164,6 @@ interface Int32Array {
*/
reverse(): Int32Array;

/**
* Sets a value or an array of values.
* @param index The index of the location to set.
* @param value The value to set.
*/
set(index: number, value: number): void;

/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
Expand Down Expand Up @@ -3490,13 +3448,6 @@ interface Uint32Array {
*/
reverse(): Uint32Array;

/**
* Sets a value or an array of values.
* @param index The index of the location to set.
* @param value The value to set.
*/
set(index: number, value: number): void;

/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
Expand Down Expand Up @@ -3781,13 +3732,6 @@ interface Float32Array {
*/
reverse(): Float32Array;

/**
* Sets a value or an array of values.
* @param index The index of the location to set.
* @param value The value to set.
*/
set(index: number, value: number): void;

/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
Expand Down Expand Up @@ -4073,13 +4017,6 @@ interface Float64Array {
*/
reverse(): Float64Array;

/**
* Sets a value or an array of values.
* @param index The index of the location to set.
* @param value The value to set.
*/
set(index: number, value: number): void;

/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
Expand Down

0 comments on commit 1d28c88

Please sign in to comment.