| 1 | export interface LocalElectronPluginConfig { |
| 2 | /** |
| 3 | * Whether or not the plugin is enabled. |
| 4 | * |
| 5 | * Can be handy to set this to an environment variable for quick personal |
| 6 | * toggling of this plugin. |
| 7 | * |
| 8 | * Default: `true` |
| 9 | */ |
| 10 | enabled?: boolean; |
| 11 | /** |
| 12 | * An absolute path to the folder containing your built version of Electron. |
| 13 | * |
| 14 | * Normally this looks like `/path/to/electron/out/D` |
| 15 | */ |
| 16 | electronPath: string; |
| 17 | /** |
| 18 | * The platform your local build of Electron is for. You only need to set |
| 19 | * this if you have a local build for a platform that isn't your system's |
| 20 | * platform. |
| 21 | * |
| 22 | * Default: process.platform |
| 23 | */ |
| 24 | electronPlatform?: string; |
| 25 | /** |
| 26 | * The arch your local build of Electron is for. You only need to set this if |
| 27 | * you have a local build for an arch that isn't your system's arch. |
| 28 | * |
| 29 | * Default: process.arch |
| 30 | */ |
| 31 | electronArch?: string; |
| 32 | } |
nothing calls this directly
no outgoing calls
no test coverage detected