diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gdot/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/base/ndarray/gdot/docs/types/index.d.ts
index e02c1c7bb389..e9cf0672cfe6 100644
--- a/lib/node_modules/@stdlib/blas/base/ndarray/gdot/docs/types/index.d.ts
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gdot/docs/types/index.d.ts
@@ -20,7 +20,7 @@
///
-import { ndarray } from '@stdlib/types/ndarray';
+import { typedndarray } from '@stdlib/types/ndarray';
/**
* Computes the dot product of two one-dimensional ndarrays.
@@ -40,7 +40,7 @@ import { ndarray } from '@stdlib/types/ndarray';
* var z = gdot( [ x, y ] );
* // returns -5.0
*/
-declare function gdot( arrays: [ T, T ] ): number;
+declare function gdot = typedndarray>( arrays: [ T, T ] ): number;
// EXPORTS //