()
| 298 | let configWriteQueue = Promise.resolve() |
| 299 | |
| 300 | function configPath(): string { |
| 301 | return path.join(app.getPath('userData'), CONFIG_FILE) |
| 302 | } |
| 303 | |
| 304 | function normalizeWindowState(value: unknown): PersistedWindowState | null { |
| 305 | if (!value || typeof value !== 'object') return null |
no outgoing calls
no test coverage detected