@@ -265,7 +265,7 @@ interface OptionsWithDType extends Options {
265
265
* dt = y.dtype;
266
266
* // returns 'float64'
267
267
*/
268
- declare function zerosLike ( x : float64ndarray , options ?: Options ) : float64ndarray ; // tslint:disable-line:max-line-length
268
+ declare function zerosLike ( x : float64ndarray , options ?: Options ) : float64ndarray ;
269
269
270
270
/**
271
271
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
@@ -302,7 +302,7 @@ declare function zerosLike( x: float64ndarray, options?: Options ): float64ndarr
302
302
* dt = y.dtype;
303
303
* // returns 'float32'
304
304
*/
305
- declare function zerosLike ( x : float32ndarray , options ?: Options ) : float32ndarray ; // tslint:disable-line:max-line-length
305
+ declare function zerosLike ( x : float32ndarray , options ?: Options ) : float32ndarray ;
306
306
307
307
/**
308
308
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
@@ -339,7 +339,7 @@ declare function zerosLike( x: float32ndarray, options?: Options ): float32ndarr
339
339
* dt = y.dtype;
340
340
* // returns 'complex128'
341
341
*/
342
- declare function zerosLike ( x : complex128ndarray , options ?: Options ) : complex128ndarray ; // tslint:disable-line:max-line-length
342
+ declare function zerosLike ( x : complex128ndarray , options ?: Options ) : complex128ndarray ;
343
343
344
344
/**
345
345
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
@@ -376,7 +376,7 @@ declare function zerosLike( x: complex128ndarray, options?: Options ): complex12
376
376
* dt = y.dtype;
377
377
* // returns 'complex64'
378
378
*/
379
- declare function zerosLike ( x : complex64ndarray , options ?: Options ) : complex64ndarray ; // tslint:disable-line:max-line-length
379
+ declare function zerosLike ( x : complex64ndarray , options ?: Options ) : complex64ndarray ;
380
380
381
381
/**
382
382
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
@@ -524,7 +524,7 @@ declare function zerosLike( x: int8ndarray, options?: Options ): int8ndarray;
524
524
* dt = y.dtype;
525
525
* // returns 'uint32'
526
526
*/
527
- declare function zerosLike ( x : uint32ndarray , options ?: Options ) : uint32ndarray ; // tslint:disable-line:max-line-length
527
+ declare function zerosLike ( x : uint32ndarray , options ?: Options ) : uint32ndarray ;
528
528
529
529
/**
530
530
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
@@ -561,7 +561,7 @@ declare function zerosLike( x: uint32ndarray, options?: Options ): uint32ndarray
561
561
* dt = y.dtype;
562
562
* // returns 'uint16'
563
563
*/
564
- declare function zerosLike ( x : uint16ndarray , options ?: Options ) : uint16ndarray ; // tslint:disable-line:max-line-length
564
+ declare function zerosLike ( x : uint16ndarray , options ?: Options ) : uint16ndarray ;
565
565
566
566
/**
567
567
* Creates a zero-filled array having the same shape and data type as a provided input ndarray.
@@ -635,7 +635,7 @@ declare function zerosLike( x: uint8ndarray, options?: Options ): uint8ndarray;
635
635
* dt = y.dtype;
636
636
* // returns 'uint8c'
637
637
*/
638
- declare function zerosLike ( x : uint8cndarray , options ?: Options ) : uint8cndarray ; // tslint:disable-line:max-line-length
638
+ declare function zerosLike ( x : uint8cndarray , options ?: Options ) : uint8cndarray ;
639
639
640
640
/**
641
641
* Creates a zero-filled double-precision floating-point array having the same shape as a provided input ndarray.
@@ -675,7 +675,7 @@ declare function zerosLike( x: uint8cndarray, options?: Options ): uint8cndarray
675
675
* dt = y.dtype;
676
676
* // returns 'float64'
677
677
*/
678
- declare function zerosLike ( x : ndarray , options : Float64Options ) : float64ndarray ; // tslint:disable-line:max-line-length
678
+ declare function zerosLike ( x : ndarray , options : Float64Options ) : float64ndarray ;
679
679
680
680
/**
681
681
* Creates a zero-filled single-precision floating-point array having the same shape as a provided input ndarray.
@@ -715,7 +715,7 @@ declare function zerosLike( x: ndarray, options: Float64Options ): float64ndarra
715
715
* dt = y.dtype;
716
716
* // returns 'float32'
717
717
*/
718
- declare function zerosLike ( x : ndarray , options : Float32Options ) : float32ndarray ; // tslint:disable-line:max-line-length
718
+ declare function zerosLike ( x : ndarray , options : Float32Options ) : float32ndarray ;
719
719
720
720
/**
721
721
* Creates a zero-filled double-precision complex floating-point array having the same shape as a provided input ndarray.
@@ -755,7 +755,7 @@ declare function zerosLike( x: ndarray, options: Float32Options ): float32ndarra
755
755
* dt = y.dtype;
756
756
* // returns 'complex128'
757
757
*/
758
- declare function zerosLike ( x : ndarray , options : Complex128Options ) : complex128ndarray ; // tslint:disable-line:max-line-length
758
+ declare function zerosLike ( x : ndarray , options : Complex128Options ) : complex128ndarray ;
759
759
760
760
/**
761
761
* Creates a zero-filled single-precision complex floating-point array having the same shape as a provided input ndarray.
@@ -795,7 +795,7 @@ declare function zerosLike( x: ndarray, options: Complex128Options ): complex128
795
795
* dt = y.dtype;
796
796
* // returns 'complex64'
797
797
*/
798
- declare function zerosLike ( x : ndarray , options : Complex64Options ) : complex64ndarray ; // tslint:disable-line:max-line-length
798
+ declare function zerosLike ( x : ndarray , options : Complex64Options ) : complex64ndarray ;
799
799
800
800
/**
801
801
* Creates a zero-filled 32-bit signed integer array having the same shape as a provided input ndarray.
@@ -1113,7 +1113,7 @@ declare function zerosLike( x: ndarray, options: Uint8COptions ): uint8cndarray;
1113
1113
* dt = y.dtype;
1114
1114
* // returns 'generic'
1115
1115
*/
1116
- declare function zerosLike ( x : ndarray , options ?: Options | OptionsWithDType ) : typedndarray < number > ; // tslint:disable-line:max-line-length
1116
+ declare function zerosLike ( x : ndarray , options ?: Options | OptionsWithDType ) : typedndarray < number > ;
1117
1117
1118
1118
1119
1119
// EXPORTS //
0 commit comments