add license headers to source files
add license file
change license to AGPL-3.0-or-later
This module exposes a single function which produces AutoIT advanced
descriptors as described by the AutoIT
documentation. The
descriptor
function has a single object parameter whose optional
keys are used as the contents of the descriptor. For example,
import { descriptor } from 'autoit-advanced-descriptor'
descriptor({
className: 'Notepad',
instance: 2
}) === '[CLASS:Notepad; INSTANCE:2]'
The following keys are supported:
key | type | AutoIT key |
---|---|---|
title | String | TITLE |
className | String | CLASS |
regexpTitle | String | REGEXPTITLE |
regexpClassName | String | REGEXPCLASS |
instance | Integer | INSTANCE |
active | Boolean | ACTIVE |
last | Boolean | LAST |
x | Integer | X |
y | Integer | Y |
w | Integer | W |
h | Integer | H |