We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abf8ec7 commit 1b2436bCopy full SHA for 1b2436b
lib/node_modules/@stdlib/ndarray/base/any/docs/types/index.d.ts
@@ -21,7 +21,7 @@
21
/// <reference types="@stdlib/types"/>
22
23
import { ArrayLike } from '@stdlib/types/array';
24
-import { typedndarray } from '@stdlib/types/ndarray';
+import { ndarray } from '@stdlib/types/ndarray';
25
26
/**
27
* Tests whether at least one element in an ndarray is truthy.
@@ -51,7 +51,7 @@ import { typedndarray } from '@stdlib/types/ndarray';
51
* var out = any( [ x ] );
52
* // returns true
53
*/
54
-declare function any<T = unknown>( arrays: ArrayLike<typedndarray<T>> ): boolean;
+declare function any( arrays: ArrayLike<ndarray> ): boolean;
55
56
57
// EXPORTS //
0 commit comments