**Remove the window.chrome interface declaration** Somewhere in the code there is the following: ``` declare global { interface Window { chrome?: unknown; } } ``` This interferes with typing of window.chrome in other projects. Is it possible to remove this?
Remove the window.chrome interface declaration
Somewhere in the code there is the following:
This interferes with typing of window.chrome in other projects. Is it possible to remove this?