UNPKG

@ahmic/autoit-js

Version:
15 lines (12 loc) 610 B
import './@types/point.js'; import './@types/rect.js'; import { INT, LPCWSTR } from './@types/win32.js'; import { autoit } from './lib/autoit.js'; function ControlEnableSync(windowTitle, windowText, controlId) { return autoit.invoke('AU3_ControlEnable', INT, [LPCWSTR, LPCWSTR, LPCWSTR], [windowTitle, windowText, controlId]); } function ControlEnable(windowTitle, windowText, controlId) { return autoit.invokeAsync('AU3_ControlEnable', INT, [LPCWSTR, LPCWSTR, LPCWSTR], [windowTitle, windowText, controlId]); } export { ControlEnable, ControlEnableSync }; //# sourceMappingURL=control-enable.js.map