diff --git a/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts index 33aa507bd360..26b7e75459de 100644 --- a/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts @@ -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' ); @@ -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(); @@ -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.