Update changes to ko-KR/api/power-monitor.md
This commit is contained in:
parent
f13bd655a1
commit
577585df63
1 changed files with 5 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
# powerMonitor
|
# powerMonitor
|
||||||
|
|
||||||
> 파워의 상태 변경을 모니터링합니다.
|
> 파워의 상태 변경을 모니터링합니다.
|
||||||
|
|
||||||
|
@ -8,10 +8,11 @@
|
||||||
예시:
|
예시:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
const {app} = require('electron');
|
const electron = require('electron');
|
||||||
|
const {app} = electron;
|
||||||
|
|
||||||
app.on('ready', () => {
|
app.on('ready', () => {
|
||||||
require('electron').powerMonitor.on('suspend', () => {
|
electron.powerMonitor.on('suspend', () => {
|
||||||
console.log('절전모드로 진입합니다!');
|
console.log('절전모드로 진입합니다!');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -19,7 +20,7 @@ app.on('ready', () => {
|
||||||
|
|
||||||
## Events
|
## Events
|
||||||
|
|
||||||
`power-monitor` 모듈은 다음과 같은 이벤트를 가지고 있습니다:
|
`powerMonitor` 모듈은 다음과 같은 이벤트를 가지고 있습니다:
|
||||||
|
|
||||||
## Event: `suspend`
|
## Event: `suspend`
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue