Fix type names for Commands

This commit is contained in:
Cooldude2606
2025-08-06 16:46:57 +01:00
parent 1d95d899ea
commit c5b9138e4e
3 changed files with 4 additions and 4 deletions

View File

@@ -76,11 +76,11 @@ local Commands = {
},
}
--- @class Commands._status: table<string, Commands.Status>
--- @class Commands.status: table<string, Commands.Status>
--- Contains the different status values a command can return
Commands.status = {}
--- @class Commands._types: table<string, Commands.InputParser | Commands.InputParserFactory>
--- @class Commands.types: table<string, Commands.InputParser | Commands.InputParserFactory>
--- Stores all input parsers and validators for different data types
Commands.types = {}