@ahmic/autoit-js
Version:
Node.js bindings for AutoItX3.dll
23 lines (22 loc) • 383 B
TypeScript
/**
* Initializes the AutoIt library.
*
* @example
* ```typescript
* import { InitSync } from '@ahmic/autoit-js';
*
* InitSync();
* ```
*/
export declare function InitSync(): void;
/**
* Initializes the AutoIt library.
*
* @example
* ```typescript
* import { Init } from '@ahmic/autoit-js';
*
* await Init();
* ```
*/
export declare function Init(): Promise<void>;