mirror of
https://github.com/ChipmunkMC/node-brigadier-commands.git
synced 2024-11-14 19:14:55 -05:00
10 lines
222 B
JavaScript
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
|