web-app-launch.idl (582B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: Web App Launch Handler API (https://wicg.github.io/web-app-launch/) 5 6 [Exposed=Window] interface LaunchParams { 7 readonly attribute DOMString? targetURL; 8 readonly attribute FrozenArray<FileSystemHandle> files; 9 }; 10 11 callback LaunchConsumer = any (LaunchParams params); 12 13 partial interface Window { 14 readonly attribute LaunchQueue launchQueue; 15 }; 16 17 [Exposed=Window] interface LaunchQueue { 18 undefined setConsumer(LaunchConsumer consumer); 19 };