@@ -148,7 +148,7 @@ type GetIndexedArrayLike<T> = ( arr: Collection<T>, idx: number ) => T | void;
148148* @param idx - element index
149149* @returns element value
150150*/
151- type GetAccessorArrayLike < T > = ( arr : AccessorArrayLike < T > , idx : number ) => T | void ; // tslint:disable-line:max-line-length
151+ type GetAccessorArrayLike < T > = ( arr : AccessorArrayLike < T > , idx : number ) => T | void ;
152152
153153/**
154154* Sets an element in a `Float64Array`.
@@ -238,7 +238,7 @@ type SetUint8c = ( arr: Uint8ClampedArray, idx: number, value: number ) => void;
238238* @param idx - element index
239239* @param value - value to set
240240*/
241- type SetComplex128 = ( arr : Complex128Array , idx : number , value : ComplexLike ) => void ; // tslint:disable-line:max-line-length
241+ type SetComplex128 = ( arr : Complex128Array , idx : number , value : ComplexLike ) => void ;
242242
243243/**
244244* Sets an element in a `Complex64Array`.
@@ -247,7 +247,7 @@ type SetComplex128 = ( arr: Complex128Array, idx: number, value: ComplexLike ) =
247247* @param idx - element index
248248* @param value - value to set
249249*/
250- type SetComplex64 = ( arr : Complex64Array , idx : number , value : ComplexLike ) => void ; // tslint:disable-line:max-line-length
250+ type SetComplex64 = ( arr : Complex64Array , idx : number , value : ComplexLike ) => void ;
251251
252252/**
253253* Sets an element in a generic `Array`.
@@ -265,7 +265,7 @@ type SetGeneric<T> = ( arr: Array<T>, idx: number, value: T ) => void;
265265* @param idx - element index
266266* @param value - value to set
267267*/
268- type SetIndexedArrayLike < T > = ( arr : Collection < T > , idx : number , value : T ) => void ; // tslint:disable-line:max-line-length
268+ type SetIndexedArrayLike < T > = ( arr : Collection < T > , idx : number , value : T ) => void ;
269269
270270/**
271271* Sets an element in an array-like object supporting the get/set protocol.
@@ -274,7 +274,7 @@ type SetIndexedArrayLike<T> = ( arr: Collection<T>, idx: number, value: T ) => v
274274* @param idx - element index
275275* @param value - value to set
276276*/
277- type SetAccessorArrayLike < T > = ( arr : AccessorArrayLike < T > , idx : number , value : T ) => void ; // tslint:disable-line:max-line-length
277+ type SetAccessorArrayLike < T > = ( arr : AccessorArrayLike < T > , idx : number , value : T ) => void ;
278278
279279/**
280280* Interface describing the output object for a `Float64Array`.
@@ -830,7 +830,7 @@ declare function accessors( x: Complex64Array ): Complex64AccessorObject;
830830* var v = fcns[ 0 ]( x, 2 );
831831* // returns 3
832832*/
833- declare function accessors < T = any > ( x : AccessorArrayLike < T > ) : GetSetAccessorObject < T > ; // tslint:disable-line:max-line-length
833+ declare function accessors < T = unknown > ( x : AccessorArrayLike < T > ) : GetSetAccessorObject < T > ;
834834
835835/**
836836* Returns element accessors for a provided "generic" array.
@@ -856,7 +856,7 @@ declare function accessors<T = any>( x: AccessorArrayLike<T> ): GetSetAccessorOb
856856* var v = fcns[ 0 ]( x, 2 );
857857* // returns 3
858858*/
859- declare function accessors < T = any > ( x : Array < T > ) : GenericAccessorObject < T > ;
859+ declare function accessors < T = unknown > ( x : Array < T > ) : GenericAccessorObject < T > ;
860860
861861/**
862862* Returns element accessors for a provided array-like object.
@@ -888,7 +888,7 @@ declare function accessors<T = any>( x: Array<T> ): GenericAccessorObject<T>;
888888* var v = fcns[ 0 ]( x, 2 );
889889* // returns 3
890890*/
891- declare function accessors < T = any > ( x : Collection < T > ) : IndexedAccessorObject < T > ; // tslint:disable-line:max-line-length
891+ declare function accessors < T = unknown > ( x : Collection < T > ) : IndexedAccessorObject < T > ;
892892
893893
894894// EXPORTS //
0 commit comments