node-brigadier-commands/lib/index.js
Chipmunk d302cf8f37 Implement argument types
Also fixes CommandDispatcher not throwing parse exceptions correctly, RequiredArgumentBuilder returning incorrect objects, and CommandContext.getArgument not returning the correct value
2023-09-01 18:41:31 -04:00

23 lines
622 B
JavaScript

const exceptions = require('./exceptions')
const StringReader = require('./StringReader.js')
const _arguments = require('./arguments')
const context = require('./context')
const suggestion = require('./suggestion')
const tree = require('./tree')
const builder = require('./builder')
const CommandDispatcher = require('./CommandDispatcher.js')
const LiteralMessage = require('./LiteralMessage.js')
const ParseResults = require('./ParseResults.js')
module.exports = {
arguments: _arguments,
builder,
context,
exceptions,
suggestion,
tree,
CommandDispatcher,
LiteralMessage,
ParseResults,
StringReader
}