@@ -56,7 +56,7 @@ declare function complexarray( dtype?: DataType ): ComplexTypedArray;
56
56
* var arr = complexarray( 2, 'complex64' );
57
57
* // returns <Complex64Array>
58
58
*/
59
- declare function complexarray ( length : number , dtype ?: DataType ) : ComplexTypedArray ; // tslint:disable-line:max-line-length
59
+ declare function complexarray ( length : number , dtype ?: DataType ) : ComplexTypedArray ;
60
60
61
61
/**
62
62
* Creates a complex number typed array.
@@ -73,7 +73,7 @@ declare function complexarray( length: number, dtype?: DataType ): ComplexTypedA
73
73
* var arr = complexarray( new Complex128Array( 2 ), 'complex64' );
74
74
* // returns <Complex64Array>
75
75
*/
76
- declare function complexarray ( complexarray : ComplexTypedArray , dtype ?: DataType ) : ComplexTypedArray ; // tslint:disable-line:max-line-length
76
+ declare function complexarray ( complexarray : ComplexTypedArray , dtype ?: DataType ) : ComplexTypedArray ;
77
77
78
78
/**
79
79
* Creates a complex number typed array.
@@ -91,7 +91,7 @@ declare function complexarray( complexarray: ComplexTypedArray, dtype?: DataType
91
91
* var arr = complexarray( [ 5, -3 ], 'complex64' );
92
92
* // returns <Complex64Array>
93
93
*/
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 ;
95
95
96
96
/**
97
97
* Creates a complex number typed array.
@@ -114,7 +114,7 @@ declare function complexarray( obj: ArrayLike<number> | Iterable<any>, dtype?: D
114
114
* var arr = complexarray( buf, 'complex64' );
115
115
* // returns <Complex64Array>
116
116
*/
117
- declare function complexarray ( buffer : ArrayBuffer , dtype ?: DataType ) : ComplexTypedArray ; // tslint:disable-line:max-line-length
117
+ declare function complexarray ( buffer : ArrayBuffer , dtype ?: DataType ) : ComplexTypedArray ;
118
118
119
119
/**
120
120
* Creates a complex number typed array.
@@ -138,7 +138,7 @@ declare function complexarray( buffer: ArrayBuffer, dtype?: DataType ): ComplexT
138
138
* var arr = complexarray( buf, 16, 'complex64' );
139
139
* // returns <Complex64Array>
140
140
*/
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 ;
142
142
143
143
/**
144
144
* Creates a complex number typed array.
@@ -163,7 +163,7 @@ declare function complexarray( buffer: ArrayBuffer, byteOffset?: number, dtype?:
163
163
* var arr = complexarray( buf, 16, 2, 'complex64' );
164
164
* // returns <Complex64Array>
165
165
*/
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 ;
167
167
168
168
169
169
// EXPORTS //
0 commit comments