login-status.idl (465B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: Login Status API (https://w3c-fedid.github.io/login-status/) 5 6 enum LoginStatus { 7 "logged-in", 8 "logged-out", 9 }; 10 11 [Exposed=Window, SecureContext] 12 13 interface NavigatorLogin { 14 Promise<undefined> setStatus(LoginStatus status); 15 }; 16 17 partial interface Navigator { 18 [SecureContext] readonly attribute NavigatorLogin login; 19 };