Skip to content

Commit 5fccca1

Browse files
authored
feat: allow separator array to have different dtype
Signed-off-by: Athan <kgryte@gmail.com>
1 parent c4ee1a4 commit 5fccca1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/docs/types

lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import { typedndarray } from '@stdlib/types/ndarray';
4242
* var v = gjoin( [ x, separator ] );
4343
* // returns '1,3,4,2'
4444
*/
45-
declare function gjoin<T = unknown>( arrays: [ typedndarray<T>, typedndarray<T> ] ): string;
45+
declare function gjoin<T = unknown, U = unknown>( arrays: [ typedndarray<T>, typedndarray<U> ] ): string;
4646

4747

4848
// EXPORTS //

0 commit comments

Comments
 (0)