Type alias InteractionHandlersObject

InteractionHandlersObject: {
    autocomplete: Collection<string, ModuleAutocompleteHandler>;
    button: Collection<string, ModuleButtonHandler>;
    command: Collection<string, ModuleCommandHandler>;
    menuCommand: Collection<string, ModuleMenuCommandHandler>;
    modalSubmit: Collection<string, ModuleModalSubmitHandler>;
    selectMenu: Collection<string, ModuleSelectMenuHandler>;
}

Type declaration