@@ -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`.
@@ -834,7 +834,7 @@ declare function arraylike2object( x: Uint8ClampedArray ): Uint8cAccessorObject;
834834* var v = fcns[ 0 ]( x, 1 );
835835* // returns <Complex128>
836836*/
837- declare function arraylike2object ( x : Complex128Array ) : Complex128AccessorObject ; // tslint:disable-line:max-line-length
837+ declare function arraylike2object ( x : Complex128Array ) : Complex128AccessorObject ;
838838
839839/**
840840* Converts a one-dimensional array-like object to an object likely to have the same "shape".
@@ -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 = unknown > ( x : AccessorArrayLike < T > ) : GetSetAccessorObject < T > ; // tslint:disable-line:max-line-length
903+ declare function arraylike2object < T = unknown > ( x : AccessorArrayLike < T > ) : GetSetAccessorObject < T > ;
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 = unknown>( x: AccessorArrayLike<T> ): GetSe
926926* var v = fcns[ 0 ]( x.data, 2 );
927927* // returns 3
928928*/
929- declare function arraylike2object < T = unknown > ( x : Array < T > ) : GenericAccessorObject < T > ; // tslint:disable-line:max-line-length
929+ declare function arraylike2object < T = unknown > ( x : Array < T > ) : GenericAccessorObject < T > ;
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 = unknown>( x: Array<T> ): GenericAccessorOb
958958* var v = fcns[ 0 ]( x.data, 2 );
959959* // returns 3
960960*/
961- declare function arraylike2object < T = unknown > ( x : Collection < T > ) : IndexedAccessorObject < T > ; // tslint:disable-line:max-line-length
961+ declare function arraylike2object < T = unknown > ( x : Collection < T > ) : IndexedAccessorObject < T > ;
962962
963963
964964// EXPORTS //
0 commit comments