UNPKG
@ahmic/autoit-js
Version:
latest (2.1.0)
2.1.0
2.0.0
1.1.0
1.0.1
1.0.0
Node.js bindings for AutoItX3.dll
github.com/KasimAhmic/autoit-js
KasimAhmic/autoit-js
@ahmic/autoit-js
/
dist
/
shutdown.d.ts
12 lines
(11 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
declare
enum
ShutdownFlag
{
Logoff
=
0
,
Shutdown
=
1
,
Reboot
=
2
,
Force
=
4
,
PowerDown
=
8
,
ForceHung
=
16
,
Standby
=
32
,
Hibernate
=
64
}
export
declare
function
Shutdown
(
flags
:
ShutdownFlag
):
number
;