fullstack-build / tslog

📝 tslog - Universal Logger for TypeScript and JavaScript
https://tslog.js.org
MIT License
1.35k stars 63 forks source link

Feature Request: [Feature] Remove the window.chrome interface declaration #300

Open Pinakin-Desai-HBK opened 2 months ago

Pinakin-Desai-HBK commented 2 months ago

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?