@@ -75,7 +75,7 @@ declare function filledarray( dtype?: DataType ): ArrayOrTypedArray;
7575* var arr = filledarray( 1.0, 5, 'float32' );
7676* // returns <Float32Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
7777*/
78- declare function filledarray ( value : any , length : number , dtype ?: DataType ) : ArrayOrTypedArray ; // tslint:disable-line:max-line-length
78+ declare function filledarray ( value : any , length : number , dtype ?: DataType ) : ArrayOrTypedArray ;
7979
8080/**
8181* Creates a filled array from another `array`.
@@ -93,7 +93,7 @@ declare function filledarray( value: any, length: number, dtype?: DataType ): Ar
9393* var arr = filledarray( 1.0, [ 5.0, -3.0, 2.0 ], 'float32' );
9494* // returns <Float32Array>[ 1.0, 1.0, 1.0 ]
9595*/
96- declare function filledarray ( value : any , array : Collection , dtype ?: DataType ) : ArrayOrTypedArray ; // tslint:disable-line:max-line-length unified-signatures
96+ declare function filledarray ( value : any , array : Collection , dtype ?: DataType ) : ArrayOrTypedArray ; unified - signatures
9797
9898/**
9999* Creates a filled array from an iterable.
@@ -121,7 +121,7 @@ declare function filledarray( value: any, array: Collection, dtype?: DataType ):
121121* var arr = filledarray( 1.0, it, 'float32' );
122122* // returns <Float32Array>[ 1.0, 1.0, 1.0 ]
123123*/
124- declare function filledarray ( value : any , iterable : IterableIterator , dtype ?: DataType ) : ArrayOrTypedArray ; // tslint:disable-line:max-line-length unified-signatures
124+ declare function filledarray ( value : any , iterable : IterableIterator , dtype ?: DataType ) : ArrayOrTypedArray ; unified - signatures
125125
126126/**
127127* Returns a filled typed array view of an `ArrayBuffer`.
@@ -151,7 +151,7 @@ declare function filledarray( value: any, iterable: IterableIterator, dtype?: Da
151151* var arr = filledarray( 1.0, buf, 8, 2, 'float32' );
152152* // returns <Float32Array>[ 1.0, 1.0 ]
153153*/
154- declare function filledarray ( value : any , buffer : ArrayBuffer , byteOffset : number , length : number , dtype ?: DataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
154+ declare function filledarray ( value : any , buffer : ArrayBuffer , byteOffset : number , length : number , dtype ?: DataType ) : RealOrComplexTypedArray ;
155155
156156/**
157157* Returns a filled typed array view of an `ArrayBuffer`.
@@ -180,7 +180,7 @@ declare function filledarray( value: any, buffer: ArrayBuffer, byteOffset: numbe
180180* var arr = filledarray( 1.0, buf, 8, 'float32' );
181181* // returns <Float32Array>[ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ]
182182*/
183- declare function filledarray ( value : any , buffer : ArrayBuffer , byteOffset : number , dtype ?: DataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
183+ declare function filledarray ( value : any , buffer : ArrayBuffer , byteOffset : number , dtype ?: DataType ) : RealOrComplexTypedArray ;
184184
185185/**
186186* Returns a filled typed array view of an `ArrayBuffer`.
@@ -208,7 +208,7 @@ declare function filledarray( value: any, buffer: ArrayBuffer, byteOffset: numbe
208208* var arr = filledarray( 1.0, buf, 'float32' );
209209* // returns <Float32Array>[ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ]
210210*/
211- declare function filledarray ( value : any , buffer : ArrayBuffer , dtype ?: DataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length unified-signatures
211+ declare function filledarray ( value : any , buffer : ArrayBuffer , dtype ?: DataType ) : RealOrComplexTypedArray ; unified - signatures
212212
213213
214214// EXPORTS //
0 commit comments