Skip to content

Commit 1b2436b

Browse files
committed
refactor: loosen input type
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent abf8ec7 commit 1b2436b

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/any/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/any/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// <reference types="@stdlib/types"/>
2222

2323
import { ArrayLike } from '@stdlib/types/array';
24-
import { typedndarray } from '@stdlib/types/ndarray';
24+
import { ndarray } from '@stdlib/types/ndarray';
2525

2626
/**
2727
* Tests whether at least one element in an ndarray is truthy.
@@ -51,7 +51,7 @@ import { typedndarray } from '@stdlib/types/ndarray';
5151
* var out = any( [ x ] );
5252
* // returns true
5353
*/
54-
declare function any<T = unknown>( arrays: ArrayLike<typedndarray<T>> ): boolean;
54+
declare function any( arrays: ArrayLike<ndarray> ): boolean;
5555

5656

5757
// EXPORTS //

0 commit comments

Comments
 (0)