fixing some compiler issues

This commit is contained in:
Sriram Hariharan
2023-02-22 22:59:18 -06:00
parent bce2717088
commit b0eba78697
3 changed files with 5 additions and 16 deletions

View File

@@ -1,11 +0,0 @@
/**
* This event is fired when any tab's url changes.
* This is useful for content scripts to know when SPA navigations occur.
* @param details
*/
export default function onHistoryStateUpdated(
details: chrome.webNavigation.WebNavigationTransitionCallbackDetails
): void {
const { tabId, url } = details;
// TODO: send a message to tab with tabId to reanalyze the page
}