Using this export allows you to add command suggestions to your chat.
addSuggestion
string commandName, string commandDescription, object commandParameters
This example adds a command suggestion for the /command
command.
-- Note, the command has to start with `/`.
exports.chat:addSuggestion('/command', 'help text', {
{ name="paramName1", help="param description 1" },
{ name="paramName2", help="param description 2" }
})