Skip to content

Commit 9b6e506

Browse files
committed
Auto-generated commit
1 parent 7681c79 commit 9b6e506

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/types/index.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ declare function filledarrayBy( dtype?: DataType ): ArrayOrTypedArray; // tslint
9696
* var arr = filledarrayBy( 5, constantFunction( 1.0 ) );
9797
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
9898
*/
99-
declare function filledarrayBy( length: number, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
99+
declare function filledarrayBy( length: number, clbk: Callback, thisArg?: any ): ArrayOrTypedArray;
100100

101101
/**
102102
* Creates a filled array according to a provided callback function and having a specified `length`.
@@ -128,7 +128,7 @@ declare function filledarrayBy( length: number, clbk: Callback, thisArg?: any ):
128128
* var arr = filledarrayBy( 5, 'float64', constantFunction( 1.0 ) );
129129
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0, 1.0 ]
130130
*/
131-
declare function filledarrayBy( length: number, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
131+
declare function filledarrayBy( length: number, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray;
132132

133133
/**
134134
* Creates a filled array from another `array` according to a provided callback function.
@@ -144,7 +144,7 @@ declare function filledarrayBy( length: number, dtype: DataType, clbk: Callback,
144144
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], constantFunction( 1.0 ) );
145145
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
146146
*/
147-
declare function filledarrayBy( array: Collection, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
147+
declare function filledarrayBy( array: Collection, clbk: Callback, thisArg?: any ): ArrayOrTypedArray;
148148

149149
/**
150150
* Creates a filled array from another `array` according to a provided callback function.
@@ -176,7 +176,7 @@ declare function filledarrayBy( array: Collection, clbk: Callback, thisArg?: any
176176
* var arr = filledarrayBy( [ 5.0, -3.0, 2.0 ], 'float64', constantFunction( 1.0 ) );
177177
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
178178
*/
179-
declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
179+
declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray;
180180

181181
/**
182182
* Creates a filled array from an iterable according to a callback function.
@@ -196,7 +196,7 @@ declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callba
196196
* var arr = filledarrayBy( it, constantFunction( 1.0 ) );
197197
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
198198
*/
199-
declare function filledarrayBy( iterable: IterableIterator, callback: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
199+
declare function filledarrayBy( iterable: IterableIterator, callback: Callback, thisArg?: any ): ArrayOrTypedArray;
200200

201201
/**
202202
* Creates a filled array from an iterable according to a callback function.
@@ -232,7 +232,7 @@ declare function filledarrayBy( iterable: IterableIterator, callback: Callback,
232232
* var arr = filledarrayBy( it, 'float64', constantFunction( 1.0 ) );
233233
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
234234
*/
235-
declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, callback: Callback, thisArg?: any ): ArrayOrTypedArray; unified-signatures
235+
declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, callback: Callback, thisArg?: any ): ArrayOrTypedArray;
236236

237237
/**
238238
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -296,7 +296,7 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length:
296296
* var arr = filledarrayBy( buf, 8, 2, 'float64', constantFunction( 1.0 ) );
297297
* // returns <Float64Array>[ 1.0, 1.0 ]
298298
*/
299-
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures
299+
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, length: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray;
300300

301301
/**
302302
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -358,7 +358,7 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, clbk: C
358358
* var arr = filledarrayBy( buf, 8, 'float64', constantFunction( 1.0 ) );
359359
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
360360
*/
361-
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures
361+
declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray;
362362

363363
/**
364364
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -380,7 +380,7 @@ declare function filledarrayBy( buffer: ArrayBuffer, byteOffset: number, dtype:
380380
* var arr = filledarrayBy( buf, constantFunction( 1.0 ) );
381381
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0 ]
382382
*/
383-
declare function filledarrayBy( buffer: ArrayBuffer, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures
383+
declare function filledarrayBy( buffer: ArrayBuffer, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray;
384384

385385
/**
386386
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.
@@ -418,7 +418,7 @@ declare function filledarrayBy( buffer: ArrayBuffer, clbk: Callback, thisArg?: a
418418
* var arr = filledarrayBy( buf, 'float64', constantFunction( 1.0 ) );
419419
* // returns <Float64Array>[ 1.0, 1.0, 1.0, 1.0 ]
420420
*/
421-
declare function filledarrayBy( buffer: ArrayBuffer, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray; unified-signatures
421+
declare function filledarrayBy( buffer: ArrayBuffer, dtype: DataType, clbk: Callback, thisArg?: any ): RealOrComplexTypedArray;
422422

423423

424424
// EXPORTS //

0 commit comments

Comments
 (0)