Skip to content

Commit 5504a00

Browse files
committed
Auto-generated commit
1 parent 9e7946b commit 5504a00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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; unified-signatures
96+
declare function filledarray( value: any, array: Collection, dtype?: DataType ): ArrayOrTypedArray;
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; unified-signatures
124+
declare function filledarray( value: any, iterable: IterableIterator, dtype?: DataType ): ArrayOrTypedArray;
125125

126126
/**
127127
* 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; unified-signatures
211+
declare function filledarray( value: any, buffer: ArrayBuffer, dtype?: DataType ): RealOrComplexTypedArray;
212212

213213

214214
// EXPORTS //

0 commit comments

Comments
 (0)