* fix: use path alias * fix: more path alias * fix: even more path aliasing * fix: even moreeeee path aliasing * fix: sort imports * fix: sort imports (again)
10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
import { openDebugTab } from '@pages/background/util/openDebugTab';
|
|
|
|
/**
|
|
* Called whenever the background service worker comes alive
|
|
* (usually around 30 seconds to 5 minutes after it was last alive)
|
|
*/
|
|
export default function onServiceWorkerAlive() {
|
|
openDebugTab();
|
|
}
|