@@ -259,7 +259,7 @@ interface OptionsWithDType extends Options {
259259* dt = y.dty
F440
pe;
260260* // returns 'float64'
261261*/
262- declare function emptyLike ( x : float64ndarray , options ?: Options ) : float64ndarray ; // tslint:disable-line:max-line-length
262+ declare function emptyLike ( x : float64ndarray , options ?: Options ) : float64ndarray ;
263263
264264/**
265265* 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
295295* dt = y.dtype;
296296* // returns 'float32'
297297*/
298- declare function emptyLike ( x : float32ndarray , options ?: Options ) : float32ndarray ; // tslint:disable-line:max-line-length
298+ declare function emptyLike ( x : float32ndarray , options ?: Options ) : float32ndarray ;
299299
300300/**
301301* 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
331331* dt = y.dtype;
332332* // returns 'complex128'
333333*/
334- declare function emptyLike ( x : complex128ndarray , options ?: Options ) : complex128ndarray ; // tslint:disable-line:max-line-length
334+ declare function emptyLike ( x : complex128ndarray , options ?: Options ) : complex128ndarray ;
335335
336336/**
337337* 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
367367* dt = y.dtype;
368368* // returns 'complex64'
369369*/
370- declare function emptyLike ( x : complex64ndarray , options ?: Options ) : complex64ndarray ; // tslint:disable-line:max-line-length
370+ declare function emptyLike ( x : complex64ndarray , options ?: Options ) : complex64ndarray ;
371371
372372/**
373373* 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;
511511* dt = y.dtype;
512512* // returns 'uint32'
513513*/
514- declare function emptyLike ( x : uint32ndarray , options ?: Options ) : uint32ndarray ; // tslint:disable-line:max-line-length
514+ declare function emptyLike ( x : uint32ndarray , options ?: Options ) : uint32ndarray ;
515515
516516/**
517517* 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
547547* dt = y.dtype;
548548* // returns 'uint16'
549549*/
550- declare function emptyLike ( x : uint16ndarray , options ?: Options ) : uint16ndarray ; // tslint:disable-line:max-line-length
550+ declare function emptyLike ( x : uint16ndarray , options ?: Options ) : uint16ndarray ;
551551
552552/**
553553* 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;
619619* dt = y.dtype;
620620* // returns 'uint8c'
621621*/
622- declare function emptyLike ( x : uint8cndarray , options ?: Options ) : uint8cndarray ; // tslint:disable-line:max-line-length
622+ declare function emptyLike ( x : uint8cndarray , options ?: Options ) : uint8cndarray ;
623623
624624/**
625625* 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
658658* dt = y.dtype;
659659* // returns 'float64'
660660*/
661- declare function emptyLike ( x : ndarray , options : Float64Options ) : float64ndarray ; // tslint:disable-line:max-line-length
661+ declare function emptyLike ( x : ndarray , options : Float64Options ) : float64ndarray ;
662662
663663/**
664664* 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
697697* dt = y.dtype;
698698* // returns 'float32'
699699*/
700- declare function emptyLike ( x : ndarray , options : Float32Options ) : float32ndarray ; // tslint:disable-line:max-line-length
700+ declare function emptyLike ( x : ndarray , options : Float32Options ) : float32ndarray ;
701701
702702/**
703703* 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
736736* dt = y.dtype;
737737* // returns 'complex128'
738738*/
739- declare function emptyLike ( x : ndarray , options : Complex128Options ) : complex128ndarray ; // tslint:disable-line:max-line-length
739+ declare function emptyLike ( x : ndarray , options : Complex128Options ) : complex128ndarray ;
740740
741741/**
742742* 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
775775* dt = y.dtype;
776776* // returns 'complex64'
777777*/
778- declare function emptyLike ( x : ndarray , options : Complex64Options ) : complex64ndarray ; // tslint:disable-line:max-line-length
778+ declare function emptyLike ( x : ndarray , options : Complex64Options ) : complex64ndarray ;
779779
780780/**
781781* 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;
10851085* dt = y.dtype;
10861086* // returns 'generic'
10871087*/
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 > ;
10891089
10901090
10911091// EXPORTS //
0 commit comments