From 7fc5bfe51b7d405aaa5293ec6f1a8f1e9119aea2 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Wed, 2 Mar 2022 07:44:43 +1100 Subject: feat(cli): update to TypeScript 4.6.2 (#13474) --- cli/dts/lib.esnext.array.d.ts | 78 ------------------------------------------- 1 file changed, 78 deletions(-) (limited to 'cli/dts/lib.esnext.array.d.ts') 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 @@ -16,12 +16,6 @@ and limitations under the License. /// interface Array { - /** - * 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. @@ -47,12 +41,6 @@ interface Array { } interface ReadonlyArray { - /** - * 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. @@ -78,12 +66,6 @@ interface ReadonlyArray { } 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. @@ -108,12 +90,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. @@ -138,12 +114,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. @@ -169,12 +139,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. @@ -199,12 +163,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. @@ -229,12 +187,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. @@ -259,12 +211,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. @@ -289,12 +235,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. @@ -319,12 +259,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. @@ -349,12 +283,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. @@ -379,12 +307,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. -- cgit v1.2.3