diff --git a/lib/node_modules/@stdlib/array/base/filled5d-by/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/base/filled5d-by/docs/types/index.d.ts index 7c4c9f3ca75f..d107509023f8 100644 --- a/lib/node_modules/@stdlib/array/base/filled5d-by/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/base/filled5d-by/docs/types/index.d.ts @@ -28,7 +28,7 @@ import { Shape5D } from '@stdlib/types/ndarray'; * * @returns fill value */ -type Nullary = ( this: U ) => T; +type Nullary = ( this: V ) => T; /** * Unary callback function. @@ -36,7 +36,7 @@ type Nullary = ( this: U ) => T; * @param indices - current array element indices * @returns fill value */ -type Unary = ( this: U, indices: Array ) => T; +type Unary = ( this: V, indices: Array ) => T; /** * Callback function. @@ -44,7 +44,7 @@ type Unary = ( this: U, indices: Array ) => T; * @param indices - current array element indices * @returns fill value */ -type Callback = Nullary | Unary; +type Callback = Nullary | Unary; /** * Five-dimensional array. @@ -65,7 +65,7 @@ type Array5D = Array>>>>; * var arr = filled5dBy( [ 1, 1, 1, 1, 5 ], constantFunction( 1.0 ) ); * // returns [ [ [ [ [ 1.0, 1.0, 1.0, 1.0, 1.0 ] ] ] ] ] */ -declare function filled5dBy( shape: Shape5D, clbk: Callback, thisArg?: ThisParameterType> ): Array5D; +declare function filled5dBy( shape: Shape5D, clbk: Callback, thisArg?: ThisParameterType> ): Array5D; // EXPORTS //