There should be special methods integrated for the purpose of sending modals and awaiting a submission response. These could probably just be proxy methods for the command interaction class, but will improve the process of using modals with Slasher.
e.g.
let modal = ...;
await ctx.showModal(modal);
let response = await ctx.modalResponse();
Alternatively
let modal = ...;
let response = await ctx.modalResponse(modal);
There should be special methods integrated for the purpose of sending modals and awaiting a submission response. These could probably just be proxy methods for the command interaction class, but will improve the process of using modals with Slasher.
e.g.
Alternatively