Skip to content

Commit e89cec2

Browse files
authored
fix: Fix 'Number' type declaration (#2278)
1 parent 618460c commit e89cec2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: std/assembly/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1425,7 +1425,7 @@ declare const F32: typeof _Float;
14251425
declare const F64: typeof _Float;
14261426
/** Alias of F64. */
14271427
declare const Number: typeof F64;
1428-
declare type Number = typeof F64;
1428+
declare type Number = _Float;
14291429

14301430
// User-defined diagnostic macros
14311431

0 commit comments

Comments
 (0)