Skip to content

Commit 6d0b402

Browse files
committed
Auto-generated commit
1 parent 468e817 commit 6d0b402

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Joey Reed <joeyrreed@gmail.com>
1616
Jordan-Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
1717
Joris Labie <joris.labie1@gmail.com>
1818
Justin Dennison <justin1dennison@gmail.com>
19+
KATTA NAGA NITHIN <88046362+nithinkatta@users.noreply.github.com>
1920
Marcus <mfantham@users.noreply.github.com>
2021
Matt Cochrane <matthew.cochrane.eng@gmail.com>
2122
Milan Raj <rajsite@users.noreply.github.com>

docs/types/index.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818

1919
// TypeScript Version: 2.0
2020

21+
/// <reference types="@stdlib/types"/>
22+
23+
import { NumericArray } from '@stdlib/types/array';
24+
2125
/**
2226
* Tests if a value is a numeric array.
2327
*
@@ -34,7 +38,7 @@
3438
* bool = isNumericArray( [ '1', '2', '3' ] );
3539
* // returns false
3640
*/
37-
declare function isNumericArray( v: any ): boolean;
41+
declare function isNumericArray( v: any ): v is NumericArray;
3842

3943

4044
// EXPORTS //

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"dependencies": {
4040
"@stdlib/assert-is-buffer": "^0.0.8",
4141
"@stdlib/assert-is-number-array": "^0.0.8",
42-
"@stdlib/assert-is-typed-array": "^0.0.6"
42+
"@stdlib/assert-is-typed-array": "^0.0.6",
43+
"@stdlib/types": "^0.0.14"
4344
},
4445
"devDependencies": {
4546
"@stdlib/array-float32": "^0.0.6",

0 commit comments

Comments
 (0)