UNPKG

win32-def

Version:
12 lines (9 loc) 307 B
/** * Used by SendInput to store information for synthesizing input events such as keystrokes, mouse movement, and mouse clicks. * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-input */ export enum INPUT { INPUT_MOUSE = 0, INPUT_KEYBOARD = 1, INPUT_HARDWARE = 2, }