@@ -56,7 +56,7 @@ declare function complexarray( dtype?: DataType ): ComplexTypedArray;
5656* var arr = complexarray( 2, 'complex64' );
5757* // returns <Complex64Array>
5858*/
59- declare function complexarray ( length : number , dtype ?: DataType ) : ComplexTypedArray ; // tslint:disable-line:max-line-length
59+ declare function complexarray ( length : number , dtype ?: DataType ) : ComplexTypedArray ;
6060
6161/**
6262* Creates a complex number typed array.
@@ -73,7 +73,7 @@ declare function complexarray( length: number, dtype?: DataType ): ComplexTypedA
7373* var arr = complexarray( new Complex128Array( 2 ), 'complex64' );
7474* // returns <Complex64Array>
7575*/
76- declare function complexarray ( complexarray : ComplexTypedArray , dtype ?: DataType ) : ComplexTypedArray ; // tslint:disable-line:max-line-length
76+ declare function complexarray ( complexarray : ComplexTypedArray , dtype ?: DataType ) : ComplexTypedArray ;
7777
7878/**
7979* Creates a complex number typed array.
@@ -91,7 +91,7 @@ declare function complexarray( complexarray: ComplexTypedArray, dtype?: DataType
9191* var arr = complexarray( [ 5, -3 ], 'complex64' );
9292* // returns <Complex64Array>
9393*/
94- declare function complexarray ( obj : ArrayLike < number > | Iterable < any > , dtype ?: DataType ) : ComplexTypedArray ; // tslint:disable-line:max-line-length
94+ declare function complexarray ( obj : ArrayLike < number > | Iterable < any > , dtype ?: DataType ) : ComplexTypedArray ;
9595
9696/**
9797* Creates a complex number typed array.
@@ -114,7 +114,7 @@ declare function complexarray( obj: ArrayLike<number> | Iterable<any>, dtype?: D
114114* var arr = complexarray( buf, 'complex64' );
115115* // returns <Complex64Array>
116116*/
117- declare function complexarray ( buffer : ArrayBuffer , dtype ?: DataType ) : ComplexTypedArray ; // tslint:disable-line:max-line-length
117+ declare function complexarray ( buffer : ArrayBuffer , dtype ?: DataType ) : ComplexTypedArray ;
118118
119119/**
120120* Creates a complex number typed array.
@@ -138,7 +138,7 @@ declare function complexarray( buffer: ArrayBuffer, dtype?: DataType ): ComplexT
138138* var arr = complexarray( buf, 16, 'complex64' );
139139* // returns <Complex64Array>
140140*/
141- declare function complexarray ( buffer : ArrayBuffer , byteOffset ?: number , dtype ?: DataType ) : ComplexTypedArray ; // tslint:disable-line:max-line-length
141+ declare function complexarray ( buffer : ArrayBuffer , byteOffset ?: number , dtype ?: DataType ) : ComplexTypedArray ;
142142
143143/**
144144* Creates a complex number typed array.
@@ -163,7 +163,7 @@ declare function complexarray( buffer: ArrayBuffer, byteOffset?: number, dtype?:
163163* var arr = complexarray( buf, 16, 2, 'complex64' );
164164* // returns <Complex64Array>
165165*/
166- declare function complexarray ( buffer : ArrayBuffer , byteOffset ?: number , length ?: number , dtype ?: DataType ) : ComplexTypedArray ; // tslint:disable-line:max-line-length
166+ declare function complexarray ( buffer : ArrayBuffer , byteOffset ?: number , length ?: number , dtype ?: DataType ) : ComplexTypedArray ;
167167
168168
169169// EXPORTS //
0 commit comments