UNPKG

node-desktop-idle-v2

Version:

Node/Electron module to detect idle desktop users(users away from keyboard) in Windows and Linux

9 lines (7 loc) 188 B
export interface DesktopIdle { startMonitoring: () => void; getIdleTime: () => number; stopMonitoring: () => void; } declare const desktopIdle: DesktopIdle; export { desktopIdle };