You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/special/frexp/docs/types/index.d.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ interface Frexp {
62
62
* var out = frexp( -Infinity );
63
63
* // returns [ -Infinity , 0 ]
64
64
*/
65
-
(x: number): Array<number>;
65
+
(x: number): [number,number];
66
66
67
67
/**
68
68
* Splits a double-precision floating-point number into a normalized fraction and an integer power of two and assigns results to a provided output array.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/special/frexpf/docs/types/index.d.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ interface Frexpf {
62
62
* var out = frexpf( -Infinity );
63
63
* // returns [ -Infinity , 0 ]
64
64
*/
65
-
(x: number): Array<number>;
65
+
(x: number): [number,number];
66
66
67
67
/**
68
68
* Splits a single-precision floating-point number into a normalized fraction and an integer power of two and assigns results to a provided output array.
0 commit comments