diff --git a/lib/node_modules/@stdlib/blas/tools/swap-factory/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/tools/swap-factory/docs/types/index.d.ts index 65f2f9d8190a..4a404bedaa26 100644 --- a/lib/node_modules/@stdlib/blas/tools/swap-factory/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/tools/swap-factory/docs/types/index.d.ts @@ -20,7 +20,7 @@ /// -import { ndarray } from '@stdlib/types/ndarray'; +import { ndarray, DataType } from '@stdlib/types/ndarray'; import { Collection, AccessorArrayLike } from '@stdlib/types/array'; /** @@ -81,7 +81,7 @@ type SwapFunction = ( x: ndarray, y: ndarray, dim?: number ) => ndarray; * var ybuf = y.data; * // returns [ 4.0, 2.0, -3.0, 5.0, -1.0 ] */ -declare function factory>( base: BaseFunction, dtype: any ): SwapFunction; +declare function factory>( base: BaseFunction, dtype: DataType ): SwapFunction; // EXPORTS //