Skip to content

Commit ed7b762

Browse files
authored
chore: remove unnecessary as any type assertion (#292)
1 parent 63bdf7d commit ed7b762

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension/background/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,5 @@ chrome.runtime.onConnect.addListener((port) => {
9292
}
9393
});
9494

95-
(globalThis as any).addIpcEvent = addIpcEvent;
96-
(globalThis as any).returnIpcEvents = returnIpcEvents;
95+
globalThis.addIpcEvent = addIpcEvent;
96+
globalThis.returnIpcEvents = returnIpcEvents;

0 commit comments

Comments
 (0)