Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ import sub2ind = require( '@stdlib/ndarray/sub2ind' );
import ndarray2array = require( '@stdlib/ndarray/to-array' );
import ndarray2json = require( '@stdlib/ndarray/to-json' );
import vector = require( '@stdlib/ndarray/vector' );
import ndarrayWith = require( '@stdlib/ndarray/with' );
import with = require( '@stdlib/ndarray/with' );
import zeros = require( '@stdlib/ndarray/zeros' );
import zerosLike = require( '@stdlib/ndarray/zeros-like' );

Expand Down Expand Up @@ -697,10 +697,10 @@ interface Namespace {
DataType: typeof DataType;

/**
* Returns a list of ndarray data types.
* Returns a list of ndarray data type strings.
*
* @param kind - data type kind
* @returns list of ndarray data types
* @returns list of ndarray data type strings
*
* @example
* var list = ns.dtypes();
Expand Down Expand Up @@ -2358,7 +2358,7 @@ interface Namespace {
* var v = out.get( 0, 0 );
* // returns 5
*/
with: typeof ndarrayWith;
with: typeof with;

/**
* Creates a zero-filled array having a specified shape and data type.
Expand Down
Loading