Files
uTools-quickcommand/src/js/composer/commands/otherCommands.js
2025-01-18 01:15:01 +08:00

22 lines
418 B
JavaScript

export const otherCommands = {
label: "其他功能",
icon: "more_horiz",
defaultOpened: false,
commands: [
{
value: "quickcommand.sleep",
label: "添加延时",
config: [
{
label: "延迟的毫秒数",
component: "NumberInput",
min: 0,
step: 100,
icon: "schedule",
defaultValue: 500,
},
],
},
],
};