win32-def
Version:
win32 definitions for node-ffi
10 lines • 366 B
TypeScript
/**
* 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 declare enum INPUT {
INPUT_MOUSE = 0,
INPUT_KEYBOARD = 1,
INPUT_HARDWARE = 2
}
//# sourceMappingURL=winuser-input.enum.d.ts.map