@@ -259,7 +259,7 @@ interface OptionsWithDType extends Options {
259
259
* dt = y.dtype;
260
260
* // returns 'float64'
261
261
*/
262
- declare function emptyLike ( x : float64ndarray , options ?: Options ) : float64ndarray ; // tslint:disable-line:max-line-length
262
+ declare function emptyLike ( x : float64ndarray , options ?: Options ) : float64ndarray ;
263
263
264
264
/**
265
265
* Creates an uninitialized array having the same shape and data type as a provided input ndarray.
@@ -295,7 +295,7 @@ declare function emptyLike( x: float64ndarray, options?: Options ): float64ndarr
295
295
* dt = y.dtype;
296
296
* // returns 'float32'
297
297
*/
298
- declare function emptyLike ( x : float32ndarray , options ?: Options ) : float32ndarray ; // tslint:disable-line:max-line-length
298
+ declare function emptyLike ( x : float32ndarray , options ?: Options ) : float32ndarray ;
299
299
300
300
/**
301
301
* Creates an uninitialized array having the same shape and data type as a provided input ndarray.
@@ -331,7 +331,7 @@ declare function emptyLike( x: float32ndarray, options?: Options ): float32ndarr
331
331
* dt = y.dtype;
332
332
* // returns 'complex128'
333
333
*/
334
- declare function emptyLike ( x : complex128ndarray , options ?: Options ) : complex128ndarray ; // tslint:disable-line:max-line-length
334
+ declare function emptyLike ( x : complex128ndarray , options ?: Options ) : complex128ndarray ;
335
335
336
336
/**
337
337
* Creates an uninitialized array having the same shape and data type as a provided input ndarray.
@@ -367,7 +367,7 @@ declare function emptyLike( x: complex128ndarray, options?: Options ): complex12
367
367
* dt = y.dtype;
368
368
* // returns 'complex64'
369
369
*/
370
- declare function emptyLike ( x : complex64ndarray , options ?: Options ) : complex64ndarray ; // tslint:disable-line:max-line-length
370
+ declare function emptyLike ( x : complex64ndarray , options ?: Options ) : complex64ndarray ;
371
371
372
372
/**
373
373
* Creates an uninitialized array having the same shape and data type as a provided input ndarray.
@@ -511,7 +511,7 @@ declare function emptyLike( x: int8ndarray, options?: Options ): int8ndarray;
511
511
* dt = y.dtype;
512
512
* // returns 'uint32'
513
513
*/
514
- declare function emptyLike ( x : uint32ndarray , options ?: Options ) : uint32ndarray ; // tslint:disable-line:max-line-length
514
+ declare function emptyLike ( x : uint32ndarray , options ?: Options ) : uint32ndarray ;
515
515
516
516
/**
517
517
* Creates an uninitialized array having the same shape and data type as a provided input ndarray.
@@ -547,7 +547,7 @@ declare function emptyLike( x: uint32ndarray, options?: Options ): uint32ndarray
547
547
* dt = y.dtype;
548
548
* // returns 'uint16'
549
549
*/
550
- declare function emptyLike ( x : uint16ndarray , options ?: Options ) : uint16ndarray ; // tslint:disable-line:max-line-length
550
+ declare function emptyLike ( x : uint16ndarray , options ?: Options ) : uint16ndarray ;
551
551
552
552
/**
553
553
* Creates an uninitialized array having the same shape and data type as a provided input ndarray.
@@ -619,7 +619,7 @@ declare function emptyLike( x: uint8ndarray, options?: Options ): uint8ndarray;
619
619
* dt = y.dtype;
620
620
* // returns 'uint8c'
621
621
*/
622
- declare function emptyLike ( x : uint8cndarray , options ?: Options ) : uint8cndarray ; // tslint:disable-line:max-line-length
622
+ declare function emptyLike ( x : uint8cndarray , options ?: Options ) : uint8cndarray ;
623
623
624
624
/**
625
625
* Creates an uninitialized double-precision floating-point array having the same shape as a provided input ndarray.
@@ -658,7 +658,7 @@ declare function emptyLike( x: uint8cndarray, options?: Options ): uint8cndarray
658
658
* dt = y.dtype;
659
659
* // returns 'float64'
660
660
*/
661
- declare function emptyLike ( x : ndarray , options : Float64Options ) : float64ndarray ; // tslint:disable-line:max-line-length
661
+ declare function emptyLike ( x : ndarray , options : Float64Options ) : float64ndarray ;
662
662
663
663
/**
664
664
* Creates an uninitialized single-precision floating-point array having the same shape as a provided input ndarray.
@@ -697,7 +697,7 @@ declare function emptyLike( x: ndarray, options: Float64Options ): float64ndarra
697
697
* dt = y.dtype;
698
698
* // returns 'float32'
699
699
*/
700
- declare function emptyLike ( x : ndarray , options : Float32Options ) : float32ndarray ; // tslint:disable-line:max-line-length
700
+ declare function emptyLike ( x : ndarray , options : Float32Options ) : float32ndarray ;
701
701
702
702
/**
703
703
* Creates an uninitialized double-precision complex floating-point array having the same shape as a provided input ndarray.
@@ -736,7 +736,7 @@ declare function emptyLike( x: ndarray, options: Float32Options ): float32ndarra
736
736
* dt = y.dtype;
737
737
* // returns 'complex128'
738
738
*/
739
- declare function emptyLike ( x : ndarray , options : Complex128Options ) : complex128ndarray ; // tslint:disable-line:max-line-length
739
+ declare function emptyLike ( x : ndarray , options : Complex128Options ) : complex128ndarray ;
740
740
741
741
/**
742
742
* Creates an uninitialized single-precision complex floating-point array having the same shape as a provided input ndarray.
@@ -775,7 +775,7 @@ declare function emptyLike( x: ndarray, options: Complex128Options ): complex128
775
775
* dt = y.dtype;
776
776
* // returns 'complex64'
777
777
*/
778
- declare function emptyLike ( x : ndarray , options : Complex64Options ) : complex64ndarray ; // tslint:disable-line:max-line-length
778
+ declare function emptyLike ( x : ndarray , options : Complex64Options ) : complex64ndarray ;
779
779
780
780
/**
781
781
* Creates an uninitialized 32-bit signed integer array having the same shape as a provided input ndarray.
@@ -1085,7 +1085,7 @@ declare function emptyLike( x: ndarray, options: Uint8COptions ): uint8cndarray;
1085
1085
* dt = y.dtype;
1086
1086
* // returns 'generic'
1087
1087
*/
1088
- declare function emptyLike ( x : ndarray , options ?: Options | OptionsWithDType ) : typedndarray < number > ; // tslint:disable-line:max-line-length
1088
+ declare function emptyLike ( x : ndarray , options ?: Options | OptionsWithDType ) : typedndarray < number > ;
1089
1089
1090
1090
1091
1091
// EXPORTS //
0 commit comments