-
Notifications
You must be signed in to change notification settings - Fork 34
Labels
enhancementNew feature or requestNew feature or request
Description
Describe the feature
export default defineCommand({
meta: {
name: "Test",
description: "A test command",
},
args: {
len: {
type: "string",
description: "Limit len",
validator(value) {
return Number(value) > 24 & Number(value) < 999 ? true : "Len must more than 24 and less than 999 ";
}
},
},
run({ args }) {
},
});Additional information
- Would you be willing to help implement this feature?
pi0 and jabelicjabelicjabelic
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request