We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9052261 commit 11adb1dCopy full SHA for 11adb1d
jscomp/others/js_bigint.res
@@ -1,3 +1,11 @@
1
/*** JavaScript BigInt API */
2
3
-type t
+type t = bigint
4
+
5
+external \"~-": t => t = "%negbigint"
6
+external \"~+": t => t = "%identity"
7
+external \"+": (t, t) => t = "%addbigint"
8
+external \"-": (t, t) => t = "%subbigint"
9
+external \"*": (t, t) => t = "%mulbigint"
10
+external \"/": (t, t) => t = "%divbigint"
11
+external mod: (t, t) => t = "%modbigint"
0 commit comments