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 3, 2023
1 parent 55586ac commit 0c1f72c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

6 changes: 3 additions & 3 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ declare function onesLike( x: Float32Array, dtype?: DataType ): Float32Array;
* var y = onesLike( x );
* // returns <Complex128Array>
*/
declare function onesLike( x: Complex128Array, dtype?: DataType ): Complex128Array; // tslint:disable-line:max-line-length
declare function onesLike( x: Complex128Array, dtype?: DataType ): Complex128Array;

/**
* Creates an array filled with ones and having the same length and data type as a provided input array.
Expand Down Expand Up @@ -384,7 +384,7 @@ declare function onesLike( x: Complex128Array, dtype?: DataType ): Complex128Arr
* var y = onesLike( x );
* // returns <Complex64Array>
*/
declare function onesLike( x: Complex64Array, dtype?: DataType ): Complex64Array; // tslint:disable-line:max-line-length
declare function onesLike( x: Complex64Array, dtype?: DataType ): Complex64Array;

/**
* Creates an array filled with ones and having the same length and data type as a provided input array.
Expand Down Expand Up @@ -615,7 +615,7 @@ declare function onesLike( x: Uint8Array, dtype?: DataType ): Uint8Array;
* var y = onesLike( x );
* // returns <Uint8ClampedArray>[ 1, 1 ]
*/
declare function onesLike( x: Uint8ClampedArray, dtype?: DataType ): Uint8ClampedArray; // tslint:disable-line:max-line-length
declare function onesLike( x: Uint8ClampedArray, dtype?: DataType ): Uint8ClampedArray;

/**
* Creates an array filled with ones and having the same length and data type as a provided input array.
Expand Down

0 comments on commit 0c1f72c

Please sign in to comment.