Skip to content

Commit 14fc1ac

Browse files
authored
fix: allow non-"generic" output ndarrays
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 5b6b5c0 commit 14fc1ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/blas/ext/join/docs/types

lib/node_modules/@stdlib/blas/ext/join/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ interface Join {
116116
* var idx = out.get();
117117
* // returns '1,2,3'
118118
*/
119-
assign<T = unknown, U = unknown, V extends OutputArray<string> = OutputArray<string>>( x: InputArray<T>, Separator: Separator<U>, out: V, options?: BaseOptions ): V;
119+
assign<T = unknown, U = unknown, V extends typedndarray<string> = typedndarray<string>>( x: InputArray<T>, Separator: Separator<U>, out: V, options?: BaseOptions ): V;
120120
}
121121

122122
/**

0 commit comments

Comments
 (0)