(url: string | null)
| 53 | |
| 54 | const readDefaultServerUrl = () => getStorage(DEFAULT_SERVER_URL_KEY) |
| 55 | const writeDefaultServerUrl = (url: string | null) => setStorage(DEFAULT_SERVER_URL_KEY, url) |
| 56 | |
| 57 | const notify: Platform["notify"] = async (title, description, href) => { |
| 58 | if (!("Notification" in window)) return |
nothing calls this directly
no test coverage detected