diff options
Diffstat (limited to 'cli/dts/lib.esnext.array.d.ts')
-rw-r--r-- | cli/dts/lib.esnext.array.d.ts | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/cli/dts/lib.esnext.array.d.ts b/cli/dts/lib.esnext.array.d.ts index d68fa5188..76defb57e 100644 --- a/cli/dts/lib.esnext.array.d.ts +++ b/cli/dts/lib.esnext.array.d.ts @@ -17,12 +17,6 @@ and limitations under the License. interface Array<T> { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): T | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -48,12 +42,6 @@ interface Array<T> { interface ReadonlyArray<T> { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): T | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -79,12 +67,6 @@ interface ReadonlyArray<T> { interface Int8Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): number | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -109,12 +91,6 @@ interface Int8Array { interface Uint8Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): number | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -139,12 +115,6 @@ interface Uint8Array { interface Uint8ClampedArray { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): number | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -170,12 +140,6 @@ interface Uint8ClampedArray { interface Int16Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): number | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -200,12 +164,6 @@ interface Int16Array { interface Uint16Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): number | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -230,12 +188,6 @@ interface Uint16Array { interface Int32Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): number | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -260,12 +212,6 @@ interface Int32Array { interface Uint32Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): number | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -290,12 +236,6 @@ interface Uint32Array { interface Float32Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): number | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -320,12 +260,6 @@ interface Float32Array { interface Float64Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): number | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -350,12 +284,6 @@ interface Float64Array { interface BigInt64Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): bigint | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending @@ -380,12 +308,6 @@ interface BigInt64Array { interface BigUint64Array { /** - * Access item by relative indexing. - * @param index index to access. - */ - at(index: number): bigint | undefined; - - /** * Returns the value of the last element in the array where predicate is true, and undefined * otherwise. * @param predicate find calls predicate once for each element of the array, in ascending |