diff --git a/lib/node_modules/@stdlib/assert/is-well-formed-string/docs/types/index.d.ts b/lib/node_modules/@stdlib/assert/is-well-formed-string/docs/types/index.d.ts index 3d0a7a9b5091..8e863dc2fd9f 100644 --- a/lib/node_modules/@stdlib/assert/is-well-formed-string/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/assert/is-well-formed-string/docs/types/index.d.ts @@ -21,7 +21,7 @@ /** * Interface defining `isWellFormedString` with methods for testing for primitives and objects, respectively. */ -interface isWellFormedString { +interface IsWellFormedString { /** * Tests if a string is well-formed. * @@ -125,7 +125,7 @@ interface isWellFormedString { * var bool = isWellFormedString( null ); * // returns false */ -declare var isWellFormedString: isWellFormedString; +declare var isWellFormedString: IsWellFormedString; // EXPORTS // diff --git a/lib/node_modules/@stdlib/ndarray/flatten-by/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/flatten-by/docs/types/index.d.ts index 06cc99634c9c..6445ebb260ec 100644 --- a/lib/node_modules/@stdlib/ndarray/flatten-by/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/flatten-by/docs/types/index.d.ts @@ -404,7 +404,7 @@ declare function flattenBy = genericnda * var y = flattenBy( x, opts, scale ); * // returns [ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0 ] */ -declare function flattenBy | genericndarray = typedndarray, V = unknown, W extends keyof DataTypeMap = 'generic', ThisArg = unknown>( x: U, options: Options, fcn: Callback, thisArg?: ThisParameterType> ): DataTypeMap[W]; +declare function flattenBy = typedndarray, V = unknown, W extends keyof DataTypeMap = 'generic', ThisArg = unknown>( x: U, options: Options, fcn: Callback, thisArg?: ThisParameterType> ): DataTypeMap[W]; // EXPORTS // diff --git a/lib/node_modules/@stdlib/ndarray/flatten-from-by/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/flatten-from-by/docs/types/index.d.ts index 90b094f3c707..8fd5478844fc 100644 --- a/lib/node_modules/@stdlib/ndarray/flatten-from-by/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/flatten-from-by/docs/types/index.d.ts @@ -399,7 +399,7 @@ declare function flattenFromBy = generi * var y = flattenFromBy( x, 1, opts, scale ); * // returns [ [ 2.0, 4.0 ], [ 6.0, 8.0 ], [ 10.0, 12.0 ] ] */ -declare function flattenFromBy | genericndarray = typedndarray, V = unknown, W extends keyof DataTypeMap = 'generic', ThisArg = unknown>( x: U, dim: number, options: Options, fcn: Callback, thisArg?: ThisParameterType> ): DataTypeMap[W]; +declare function flattenFromBy = typedndarray, V = unknown, W extends keyof DataTypeMap = 'generic', ThisArg = unknown>( x: U, dim: number, options: Options, fcn: Callback, thisArg?: ThisParameterType> ): DataTypeMap[W]; // EXPORTS //