docs: use optional chaining for app.dock (#46119)

docs: use optional chaining for app.dock
This commit is contained in:
Niklas Wenzel
2025-03-20 00:34:03 +01:00
committed by GitHub
parent d424c3aee7
commit bf1d377e08
3 changed files with 3 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ The following example shows how to bounce your icon on the dock.
```js
const { app } = require('electron')
app.dock.bounce()
app.dock?.bounce()
```
### Instance Methods