Skip to content

Commit 75acd73

Browse files
committed
feat: update ndarray TypeScript declarations
Signed-off-by: stdlib-bot <[email protected]>
1 parent 5c3691e commit 75acd73

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ import sub2ind = require( '@stdlib/ndarray/sub2ind' );
9090
import ndarray2array = require( '@stdlib/ndarray/to-array' );
9191
import ndarray2json = require( '@stdlib/ndarray/to-json' );
9292
import vector = require( '@stdlib/ndarray/vector' );
93-
import ndarrayWith = require( '@stdlib/ndarray/with' );
93+
import with = require( '@stdlib/ndarray/with' );
9494
import zeros = require( '@stdlib/ndarray/zeros' );
9595
import zerosLike = require( '@stdlib/ndarray/zeros-like' );
9696

@@ -697,10 +697,10 @@ interface Namespace {
697697
DataType: typeof DataType;
698698

699699
/**
700-
* Returns a list of ndarray data types.
700+
* Returns a list of ndarray data type strings.
701701
*
702702
* @param kind - data type kind
703-
* @returns list of ndarray data types
703+
* @returns list of ndarray data type strings
704704
*
705705
* @example
706706
* var list = ns.dtypes();
@@ -2358,7 +2358,7 @@ interface Namespace {
23582358
* var v = out.get( 0, 0 );
23592359
* // returns 5
23602360
*/
2361-
with: typeof ndarrayWith;
2361+
with: typeof with;
23622362

23632363
/**
23642364
* Creates a zero-filled array having a specified shape and data type.

0 commit comments

Comments
 (0)