ezolcem

Results 1 issues of ezolcem

https://developer.chrome.com/docs/extensions/reference/api/runtime#example-uninstall-url ``` chrome.runtime.onInstalled.addListener(details => { if (details.reason === chrome.runtime.OnInstalledReason.INSTALL) { chrome.runtime.setUninstallURL('https://example.com/extension-survey'); } }); ``` TypeScript gives error: `Property 'OnInstalledReason' does not exist on type 'typeof runtime'.ts(2339)`