Add validation for BitShiftLeft

This commit is contained in:
GCHQDeveloper581 2026-06-21 16:56:10 +00:00
parent bc76c1e1dc
commit beb44d1838
No known key found for this signature in database
GPG Key ID: 6222E059A3DF595C

View File

@ -27,7 +27,10 @@ class BitShiftLeft extends Operation {
{
"name": "Amount",
"type": "number",
"value": 1
"value": 1,
"min": 0,
"max": 7,
"integer": true,
}
];
}