@rescript/webapi 0.1.0-experimental-7c3cb99 → 0.1.0-experimental-ba7e2d9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rescript/webapi",
3
- "version": "0.1.0-experimental-7c3cb99",
3
+ "version": "0.1.0-experimental-ba7e2d9",
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",
@@ -54,7 +54,7 @@ The event listener is appended to target's event listener list and is not append
54
54
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener)
55
55
  */
56
56
  @send
57
- external addEventListener_useCapture: (
57
+ external addEventListenerWithCapture: (
58
58
  T.t,
59
59
  eventType,
60
60
  eventListener<'event>,
package/src/Global.res CHANGED
@@ -554,7 +554,7 @@ If an AbortSignal is passed for options's signal, then the event listener will b
554
554
  The event listener is appended to target's event listener list and is not appended if it has the same type, callback, and capture.
555
555
  [Read more on MDN](https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener)
556
556
  */
557
- external addEventListener_useCapture: (
557
+ external addEventListenerWithCapture: (
558
558
  eventType,
559
559
  eventListener<'event>,
560
560
  @as(json`true`) _,