Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 12, 2023
1 parent fc4f734 commit 80b464b
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion base/accessor-getter/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 //
Expand Down
2 changes: 1 addition & 1 deletion base/accessor-setter/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 //
Expand Down
2 changes: 1 addition & 1 deletion base/fillednd-by/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 //
Expand Down
2 changes: 1 addition & 1 deletion base/fillednd/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 //
Expand Down
4 changes: 2 additions & 2 deletions base/getter/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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 //
Expand Down
2 changes: 1 addition & 1 deletion base/onesnd/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 //
Expand Down
4 changes: 2 additions & 2 deletions base/setter/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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 //
Expand Down
2 changes: 1 addition & 1 deletion base/zerosnd/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 //
Expand Down

0 comments on commit 80b464b

Please sign in to comment.