Skip to content

Commit 6d659f2

Browse files
committed
fix: convert default type to unknown
1 parent ded7ece commit 6d659f2

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/array/base/cartesian-square/docs/types

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/array/base/cartesian-square/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { Collection } from '@stdlib/types/array';
3838
* var out = cartesianSquare( x );
3939
* // returns [ [ 1, 1 ], [ 1, 2 ], [ 2, 1 ], [ 2, 2 ] ]
4040
*/
41-
declare function cartesianSquare<T = any>( x: Collection<T> ): Array<Array<T>>;
41+
declare function cartesianSquare<T = unknown>( x: Collection<T> ): Array<Array<T>>;
4242

4343

4444
// EXPORTS //

0 commit comments

Comments
 (0)