Add examples for math, units, and currency

This commit is contained in:
Dragon Fire
2024-05-23 17:43:35 -04:00
parent 8cda43d503
commit 84348c96e0
4 changed files with 9 additions and 4 deletions
+2
View File
@@ -19,11 +19,13 @@ module.exports = class UnitsCommand extends Command {
{
key: 'base',
type: 'string',
examples: ['km', 'in'],
parse: base => base.toLowerCase()
},
{
key: 'target',
type: 'string',
examples: ['miles', 'cm'],
parse: target => target.toLowerCase()
}
]