get-installed-related-apps.idl (493B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: Get Installed Related Apps API (https://wicg.github.io/get-installed-related-apps/spec/) 5 6 dictionary RelatedApplication { 7 required USVString platform; 8 USVString url; 9 DOMString id; 10 USVString version; 11 }; 12 13 [Exposed=Window] 14 partial interface Navigator { 15 [SecureContext] Promise<sequence<RelatedApplication>> getInstalledRelatedApps(); 16 };