diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts index e1c79e2..c9a3abb 100644 --- a/docs/types/index.d.ts +++ b/docs/types/index.d.ts @@ -387,7 +387,7 @@ declare class Complex64Array implements Complex64ArrayInterface { * var bool = arr.every( predicate ); * // returns true */ - every( predicate: Predicate, thisArg?: ThisParameterType> ): boolean; + every( predicate: Predicate, thisArg?: ThisParameterType> ): boolean; /** * Returns a new array containing the elements of an array which pass a test implemented by a predicate function. @@ -425,7 +425,7 @@ declare class Complex64Array implements Complex64ArrayInterface { * var im = imagf( z ); * // returns 2.0 */ - filter( predicate: Predicate, thisArg?: ThisParameterType> ): Complex64Array; + filter( predicate: Predicate, thisArg?: ThisParameterType> ): Complex64Array; /** * Returns the first element in an array for which a predicate function returns a truthy value. @@ -458,7 +458,7 @@ declare class Complex64Array implements Complex64ArrayInterface { * var im = imagf( z ); * // returns 1.0 */ - find( predicate: Predicate, thisArg?: ThisParameterType> ): Complex64 | void; + find( predicate: Predicate, thisArg?: ThisParameterType> ): Complex64 | void; /** * Returns the index of the first element in an array for which a predicate function returns a truthy value. @@ -485,7 +485,7 @@ declare class Complex64Array implements Complex64ArrayInterface { * var idx = arr.findIndex( predicate ); * // returns 2 */ - findIndex( predicate: Predicate, thisArg?: ThisParameterType> ): number; + findIndex( predicate: Predicate, thisArg?: ThisParameterType> ): number; /** * Returns the last element in an array for which a predicate function returns a truthy value. @@ -518,7 +518,7 @@ declare class Complex64Array implements Complex64ArrayInterface { * var im = imagf( z ); * // returns 3.0 */ - findLast( predicate: Predicate, thisArg?: ThisParameterType> ): Complex64 | void; + findLast( predicate: Predicate, thisArg?: ThisParameterType> ): Complex64 | void; /** * Returns the index of the last element in an array for which a predicate function returns a truthy value. @@ -545,7 +545,7 @@ declare class Complex64Array implements Complex64ArrayInterface { * var idx = arr.findLastIndex( predicate ); * // returns 1 */ - findLastIndex( predicate: Predicate, thisArg?: ThisParameterType> ): number; + findLastIndex( predicate: Predicate, thisArg?: ThisParameterType> ): number; /** * Invokes a function once for each array element. @@ -572,7 +572,7 @@ declare class Complex64Array implements Complex64ArrayInterface { * // => 1: 2 + 2i * // => 2: 3 + 3i */ - forEach( fcn: Callback, thisArg?: ThisParameterType> ): void; + forEach( fcn: Callback, thisArg?: ThisParameterType> ): void; /** * Returns an array element. @@ -760,7 +760,7 @@ declare class Complex64Array implements Complex64ArrayInterface { * var bool = arr.some( predicate ); * // returns true */ - some( predicate: Predicate, thisArg?: ThisParameterType> ): boolean; + some( predicate: Predicate, thisArg?: ThisParameterType> ): boolean; /** * Creates a new typed array view over the same underlying `ArrayBuffer` and with the same underlying data type as the host array.