Skip to content

Commit beda866

Browse files
authored
fix: Add missing type for i64_signbit input argument (#2454)
1 parent 9f21bf3 commit beda866

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

NOTICE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ under the licensing terms detailed in LICENSE:
5151
* Adrien Zinger <zinger.ad@gmail.com>
5252
* Ruixiang Chen <xiang19890319@gmail.com>
5353
* Daniel Salvadori <danaugrs@gmail.com>
54+
* Jairus Tanaka <jairus.v.tanaka@outlook.com>
5455

5556
Portions of this software are derived from third-party works licensed under
5657
the following terms:

src/glue/js/i64.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ declare function i64_lt(left: i64, right: i64): boolean;
4848
declare function i64_lt_u(left: i64, right: i64): boolean;
4949

5050
declare function i64_align(value: i64, alignment: i32): i64;
51-
declare function i64_signbit(value): boolean;
51+
declare function i64_signbit(value: i64): boolean;
5252

5353
declare function i64_is_i8(value: i64): boolean;
5454
declare function i64_is_i16(value: i64): boolean;

0 commit comments

Comments
 (0)