mirror of
https://github.com/ChipmunkMC/node-brigadier-commands.git
synced 2024-11-15 03:24:55 -05:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
class SuggestionContext {
|
|
constructor (parent, startPos) {
|
|
this.parent = parent
|
|
this.startPos = startPos
|
|
}
|
|
}
|
|
|
|
module.exports = SuggestionContext
|