Skip to content
On this page

config.json

json
{
...
"defaultValues": {
    ...
    "inputText": "Default text",
    ...
},
"fields":
    [
        {
            {
                "name": "inputText",
                "type": "text",
                ...

            }
        ...

        },
    ...
    ]
}

inputText

json
{
    "name": "inputText",
    "type": "text",
    ...

}

script.js

js
...
const myTextValue = command.inputText;
...