node-brigadier-commands/lib/context/ParsedArgument.js
2023-08-31 20:37:15 -04:00

10 lines
222 B
JavaScript

const StringRange = require('./StringRange.js')
class ParsedArgument {
constructor (start, end, result) {
this.range = StringRange.between(start, end)
this.result = result
}
}
module.exports = ParsedArgument