UNPKG

@ahmic/autoit-js

Version:
12 lines (9 loc) 422 B
import './@types/point.js'; import './@types/rect.js'; import { INT, LPCWSTR } from './@types/win32.js'; import { autoit } from './lib/autoit.js'; function WinMove(windowTitle, windowText = '', x, y, width = -1, height = -1) { return autoit.invoke('AU3_WinMove', INT, [LPCWSTR, LPCWSTR, INT, INT, INT, INT], [windowTitle, windowText, x, y, width, height]); } export { WinMove }; //# sourceMappingURL=win-move.js.map