@ahmic/autoit-js
Version:
Node.js bindings for AutoItX3.dll
12 lines (9 loc) • 431 B
JavaScript
import './@types/point.js';
import './@types/rect.js';
import { INT, LPCWSTR } from './@types/win32.js';
import { autoit } from './lib/autoit.js';
function MouseClickDrag(button, startX, startY, endX, endY, speed = -1) {
return autoit.invoke('AU3_MouseClickDrag', INT, [LPCWSTR, INT, INT, INT, INT, INT], [button, startX, startY, endX, endY, speed]);
}
export { MouseClickDrag };
//# sourceMappingURL=mouse-click-drag.js.map