Update gitignore (sorry)

This commit is contained in:
olcxja 2026-05-10 14:02:17 +02:00
commit cca8b02fea
6604 changed files with 1219661 additions and 4 deletions

21
electron/node_modules/electron-is-dev/index.d.ts generated vendored Normal file
View file

@ -0,0 +1,21 @@
/**
Check if [Electron](https://electronjs.org) is running in development.
This package must be used from the Electron main process.
You can force development mode by setting the `ELECTRON_IS_DEV` environment variable to `1`.
@example
```
import isDev = require('electron-is-dev');
if (isDev) {
console.log('Running in development');
} else {
console.log('Running in production');
}
```
*/
declare const electronIsDev: boolean;
export = electronIsDev;