@webref/idl 3.7.0 → 3.7.1

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.
@@ -22,3 +22,18 @@ partial interface Window {
22
22
  attribute EventHandler onappinstalled;
23
23
  attribute EventHandler onbeforeinstallprompt;
24
24
  };
25
+
26
+ [Exposed=Window] interface LaunchParams {
27
+ readonly attribute DOMString? targetURL;
28
+ readonly attribute FrozenArray<FileSystemHandle> files;
29
+ };
30
+
31
+ callback LaunchConsumer = any (LaunchParams params);
32
+
33
+ partial interface Window {
34
+ readonly attribute LaunchQueue launchQueue;
35
+ };
36
+
37
+ [Exposed=Window] interface LaunchQueue {
38
+ undefined setConsumer(LaunchConsumer consumer);
39
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.7.0",
4
+ "version": "3.7.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -1,7 +1,7 @@
1
1
  // GENERATED CONTENT - DO NOT EDIT
2
2
  // Content was automatically extracted by Reffy into webref
3
3
  // (https://github.com/w3c/webref)
4
- // Source: Cooperative Scheduling of Background Tasks (https://w3c.github.io/requestidlecallback/)
4
+ // Source: requestIdleCallback() (https://w3c.github.io/requestidlecallback/)
5
5
 
6
6
  partial interface Window {
7
7
  unsigned long requestIdleCallback(IdleRequestCallback callback, optional IdleRequestOptions options = {});
package/serial.idl CHANGED
@@ -43,6 +43,7 @@ interface SerialPort : EventTarget {
43
43
  Promise<undefined> setSignals(optional SerialOutputSignals signals = {});
44
44
  Promise<SerialInputSignals> getSignals();
45
45
  Promise<undefined> close();
46
+ Promise<undefined> forget();
46
47
  };
47
48
 
48
49
  dictionary SerialPortInfo {