mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-18 05:49:49 +02:00
Cleaner Looking args
This commit is contained in:
@@ -12,12 +12,14 @@ module.exports = class UpsideDownCommand extends Command {
|
||||
group: 'textedit',
|
||||
memberName: 'upsidedown',
|
||||
description: 'Flips text upside-down.',
|
||||
args: [{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like to flip upside-down?',
|
||||
type: 'string',
|
||||
parse: text => letterTrans(text, dictionary)
|
||||
}]
|
||||
args: [
|
||||
{
|
||||
key: 'text',
|
||||
prompt: 'What text would you like to flip upside-down?',
|
||||
type: 'string',
|
||||
parse: text => letterTrans(text, dictionary)
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user