Skip to content

Commit 9ffe183

Browse files
committed
Auto-generated commit
1 parent be642b7 commit 9ffe183

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ declare function arraylike2object( x: Complex64Array ): Complex64AccessorObject;
900900
* var v = fcns[ 0 ]( x.data, 2 );
901901
* // returns 3
902902
*/
903-
declare function arraylike2object<T = any>( x: AccessorArrayLike<T> ): GetSetAccessorObject<T>; // tslint:disable-line:max-line-length
903+
declare function arraylike2object<T = unknown>( x: AccessorArrayLike<T> ): GetSetAccessorObject<T>; // tslint:disable-line:max-line-length
904904

905905
/**
906906
* Converts a one-dimensional array-like object to an object likely to have the same "shape".
@@ -926,7 +926,7 @@ declare function arraylike2object<T = any>( x: AccessorArrayLike<T> ): GetSetAcc
926926
* var v = fcns[ 0 ]( x.data, 2 );
927927
* // returns 3
928928
*/
929-
declare function arraylike2object<T = any>( x: Array<T> ): GenericAccessorObject<T>; // tslint:disable-line:max-line-length
929+
declare function arraylike2object<T = unknown>( x: Array<T> ): GenericAccessorObject<T>; // tslint:disable-line:max-line-length
930930

931931
/**
932932
* Converts a one-dimensional array-like object to an object likely to have the same "shape".
@@ -958,7 +958,7 @@ declare function arraylike2object<T = any>( x: Array<T> ): GenericAccessorObject
958958
* var v = fcns[ 0 ]( x.data, 2 );
959959
* // returns 3
960960
*/
961-
declare function arraylike2object<T = any>( x: Collection<T> ): IndexedAccessorObject<T>; // tslint:disable-line:max-line-length
961+
declare function arraylike2object<T = unknown>( x: Collection<T> ): IndexedAccessorObject<T>; // tslint:disable-line:max-line-length
962962

963963

964964
// EXPORTS //

0 commit comments

Comments
 (0)