@@ -93,7 +93,7 @@ declare function filledarray( value: any, length: number, dtype?: DataType ): Ar
93
93
* var arr = filledarray( 1.0, [ 5.0, -3.0, 2.0 ], 'float32' );
94
94
* // returns <Float32Array>[ 1.0, 1.0, 1.0 ]
95
95
*/
96
- declare function filledarray ( value : any , array : Collection , dtype ?: DataType ) : ArrayOrTypedArray ; unified - signatures
96
+ declare function filledarray ( value : any , array : Collection , dtype ?: DataType ) : ArrayOrTypedArray ;
97
97
98
98
/**
99
99
* Creates a filled array from an iterable.
@@ -121,7 +121,7 @@ declare function filledarray( value: any, array: Collection, dtype?: DataType ):
121
121
* var arr = filledarray( 1.0, it, 'float32' );
122
122
* // returns <Float32Array>[ 1.0, 1.0, 1.0 ]
123
123
*/
124
- declare function filledarray ( value : any , iterable : IterableIterator , dtype ?: DataType ) : ArrayOrTypedArray ; unified - signatures
124
+ declare function filledarray ( value : any , iterable : IterableIterator , dtype ?: DataType ) : ArrayOrTypedArray ;
125
125
126
126
/**
127
127
* Returns a filled typed array view of an `ArrayBuffer`.
@@ -208,7 +208,7 @@ declare function filledarray( value: any, buffer: ArrayBuffer, byteOffset: numbe
208
208
* var arr = filledarray( 1.0, buf, 'float32' );
209
209
* // returns <Float32Array>[ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ]
210
210
*/
211
- declare function filledarray ( value : any , buffer : ArrayBuffer , dtype ?: DataType ) : RealOrComplexTypedArray ; unified - signatures
211
+ declare function filledarray ( value : any , buffer : ArrayBuffer , dtype ?: DataType ) : RealOrComplexTypedArray ;
212
212
213
213
214
214
// EXPORTS //
0 commit comments