@rescript/webapi 0.1.0-experimental-b2e6435 → 0.1.0-experimental-de5f7c2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/EventAPI.res +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rescript/webapi",
3
- "version": "0.1.0-experimental-b2e6435",
3
+ "version": "0.1.0-experimental-de5f7c2",
4
4
  "description": "Experimental successor to [rescript-webapi](https://github.com/TheSpyder/rescript-webapi)",
5
5
  "homepage": "https://rescript-lang.github.io/experimental-rescript-webapi/",
6
6
  "bugs": "https://github.com/rescript-lang/experimental-rescript-webapi/issues",
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "license": "MIT",
37
37
  "dependencies": {
38
- "rescript": "^12.0.0-alpha.8"
38
+ "rescript": "^12.0.0-alpha.9"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@astrojs/starlight": "0.32.1",
package/src/EventAPI.res CHANGED
@@ -22,6 +22,7 @@ type eventType =
22
22
  | @as("cuechange") Cuechange
23
23
  | @as("cut") Cut
24
24
  | @as("dblclick") Dblclick
25
+ | @as("DOMContentLoaded") DOMContentLoaded
25
26
  | @as("drag") Drag
26
27
  | @as("dragend") Dragend
27
28
  | @as("dragenter") Dragenter