Skip to content

Commit 0219f06

Browse files
committed
feat: update ndarray TypeScript declarations
Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
1 parent 54dedc8 commit 0219f06

File tree

1 file changed

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

1 file changed

+2
-8
lines changed

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

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,7 @@ interface Namespace {
208208
*
209209
* // Perform reduction:
210210
* var out = ns.anyBy( x, isPositive );
211-
* // returns <ndarray>
212-
*
213-
* var v = out.get();
214-
* // returns true
211+
* // returns <ndarray>[ true ]
215212
*
216213
* @example
217214
* var Float64Array = require( '@stdlib/array/float64' );
@@ -244,10 +241,7 @@ interface Namespace {
244241
*
245242
* // Perform reduction:
246243
* var out = ns.anyBy.assign( x, y, isPositive );
247-
* // returns <ndarray>
248-
*
249-
* var v = out.get();
250-
* // returns true
244+
* // returns <ndarray>[ true ]
251245
*/
252246
anyBy: typeof anyBy;
253247

0 commit comments

Comments
 (0)