Skip to content
On this page
json
{
    // config.json // type "number" example
    //...
    "label": "field Number example",
    "defaultValues": {
    //...
    "inputNumber": 1,
    //....
    },
    //...
    "fields": [
        //...
            {
                //...
                {
                    "type": "number",
                    "name": "inputNumber",
                    "attributes": { "min": "1" },
                    //...
                },
                //...

            }
        //...
        ]
    //...
}
js
// script.js
// ....
const myNumberValue = command.inputNumber;
// ....