From 80b464b20bd37da9e558bbdfc6518848d487412a Mon Sep 17 00:00:00 2001 From: stdlib-bot <noreply@stdlib.io> Date: Sun, 12 Nov 2023 15:08:35 +0000 Subject: [PATCH] Auto-generated commit --- base/accessor-getter/docs/types/index.d.ts | 2 +- base/accessor-setter/docs/types/index.d.ts | 2 +- base/fillednd-by/docs/types/index.d.ts | 2 +- base/fillednd/docs/types/index.d.ts | 2 +- base/getter/docs/types/index.d.ts | 4 ++-- base/onesnd/docs/types/index.d.ts | 2 +- base/setter/docs/types/index.d.ts | 4 ++-- base/zerosnd/docs/types/index.d.ts | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/base/accessor-getter/docs/types/index.d.ts b/base/accessor-getter/docs/types/index.d.ts index 440350e0..870f76a4 100644 --- a/base/accessor-getter/docs/types/index.d.ts +++ b/base/accessor-getter/docs/types/index.d.ts @@ -125,7 +125,7 @@ declare function getter( dtype: 'complex64' ): GetComplex64; * var v = get( arr, 2 ); * // returns 3 */ -declare function getter<T = unknown>( dtype: string ): GetArrayLike<T>; // tslint:disable-line:no-unnecessary-generics +declare function getter<T = unknown>( dtype: string ): GetArrayLike<T>; // EXPORTS // diff --git a/base/accessor-setter/docs/types/index.d.ts b/base/accessor-setter/docs/types/index.d.ts index 12a1e3f2..1043858e 100644 --- a/base/accessor-setter/docs/types/index.d.ts +++ b/base/accessor-setter/docs/types/index.d.ts @@ -132,7 +132,7 @@ declare function setter( dtype: 'complex64' ): SetComplex64; * var v = arr.get( 2 ); * // returns 3 */ -declare function setter<T = unknown>( dtype: string ): SetArrayLike<T>; // tslint:disable-line:no-unnecessary-generics +declare function setter<T = unknown>( dtype: string ): SetArrayLike<T>; // EXPORTS // diff --git a/base/fillednd-by/docs/types/index.d.ts b/base/fillednd-by/docs/types/index.d.ts index a8189749..90ec45a0 100644 --- a/base/fillednd-by/docs/types/index.d.ts +++ b/base/fillednd-by/docs/types/index.d.ts @@ -317,7 +317,7 @@ declare function filledndBy<T = unknown, V = unknown>( shape: Shape10D, clbk: Ca * var out = filledndBy( [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ], constantFunction( 1.0 ) ); * // returns [ [ [ [ [ [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ] ] ] ] ] */ -declare function filledndBy<T = unknown, V = unknown>( shape: Shape, clbk: Callback<T, V>, thisArg?: ThisParameterType<Callback<T, V>> ): Array<T>; // tslint:disable-line:no-unnecessary-generics +declare function filledndBy<T = unknown, V = unknown>( shape: Shape, clbk: Callback<T, V>, thisArg?: ThisParameterType<Callback<T, V>> ): Array<T>; // EXPORTS // diff --git a/base/fillednd/docs/types/index.d.ts b/base/fillednd/docs/types/index.d.ts index c5a76701..aadc42d9 100644 --- a/base/fillednd/docs/types/index.d.ts +++ b/base/fillednd/docs/types/index.d.ts @@ -305,7 +305,7 @@ declare function fillednd<T = unknown>( value: T, shape: Shape10D ): Array10D<T> * var out = fillednd( 'beep', [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ] ); * // returns [ [ [ [ [ [ [ [ [ [ [ 'beep', 'beep', 'beep' ] ] ] ] ] ] ] ] ] ] */ -declare function fillednd<T = unknown, U = unknown>( value: T, shape: Shape ): Array<U>; // tslint:disable-line:no-unnecessary-generics +declare function fillednd<T = unknown, U = unknown>( value: T, shape: Shape ): Array<U>; // EXPORTS // diff --git a/base/getter/docs/types/index.d.ts b/base/getter/docs/types/index.d.ts index 959a4d91..5912b025 100644 --- a/base/getter/docs/types/index.d.ts +++ b/base/getter/docs/types/index.d.ts @@ -287,7 +287,7 @@ declare function getter( dtype: 'uint8c' ): GetUint8c; * var v = get( arr, 2 ); * // returns 3 */ -declare function getter<T = unknown>( dtype: 'generic' ): GetGeneric<T>; // tslint:disable-line:no-unnecessary-generics +declare function getter<T = unknown>( dtype: 'generic' ): GetGeneric<T>; /** * Returns an accessor function for retrieving an element from an indexed array-like object. @@ -304,7 +304,7 @@ declare function getter<T = unknown>( dtype: 'generic' ): GetGeneric<T>; // tsli * var v = get( arr, 2 ); * // returns 3 */ -declare function getter<T = unknown>( dtype: string ): GetArrayLike<T>; // tslint:disable-line:no-unnecessary-generics +declare function getter<T = unknown>( dtype: string ): GetArrayLike<T>; // EXPORTS // diff --git a/base/onesnd/docs/types/index.d.ts b/base/onesnd/docs/types/index.d.ts index a25f7db7..bb05f2bb 100644 --- a/base/onesnd/docs/types/index.d.ts +++ b/base/onesnd/docs/types/index.d.ts @@ -250,7 +250,7 @@ declare function onesnd( shape: Shape10D ): Array10D<number>; * var out = onesnd( [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ] ); * // returns [ [ [ [ [ [ [ [ [ [ [ 1.0, 1.0, 1.0 ] ] ] ] ] ] ] ] ] ] */ -declare function onesnd<T = unknown>( shape: Collection<number> ): Array<T>; // tslint:disable-line:no-unnecessary-generics +declare function onesnd<T = unknown>( shape: Collection<number> ): Array<T>; // EXPORTS // diff --git a/base/setter/docs/types/index.d.ts b/base/setter/docs/types/index.d.ts index 6aa905bc..a9c2e8d3 100644 --- a/base/setter/docs/types/index.d.ts +++ b/base/setter/docs/types/index.d.ts @@ -307,7 +307,7 @@ declare function setter( dtype: 'uint8c' ): SetUint8c; * var v = arr[ 2 ]; * // returns 3 */ -declare function setter<T = unknown>( dtype: 'generic' ): SetGeneric<T>; // tslint:disable-line:no-unnecessary-generics +declare function setter<T = unknown>( dtype: 'generic' ): SetGeneric<T>; /** * Returns an accessor function for setting an element in an indexed array-like object. @@ -326,7 +326,7 @@ declare function setter<T = unknown>( dtype: 'generic' ): SetGeneric<T>; // tsli * var v = arr[ 2 ]; * // returns 3 */ -declare function setter<T = unknown>( dtype: string ): SetArrayLike<T>; // tslint:disable-line:no-unnecessary-generics +declare function setter<T = unknown>( dtype: string ): SetArrayLike<T>; // EXPORTS // diff --git a/base/zerosnd/docs/types/index.d.ts b/base/zerosnd/docs/types/index.d.ts index 1aeaf1a2..991c6eaa 100644 --- a/base/zerosnd/docs/types/index.d.ts +++ b/base/zerosnd/docs/types/index.d.ts @@ -251,7 +251,7 @@ declare function zerosnd( shape: Shape10D ): Array10D<number>; * var out = zerosnd( [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3 ] ); * // returns [ [ [ [ [ [ [ [ [ [ [ 0.0, 0.0, 0.0 ] ] ] ] ] ] ] ] ] ] */ -declare function zerosnd<T = unknown>( shape: Shape ): Array<T>; // tslint:disable-line:no-unnecessary-generics +declare function zerosnd<T = unknown>( shape: Shape ): Array<T>; // EXPORTS //