(customId, placeholder, options = [], min = 1, max = 1)
| 49 | } |
| 50 | |
| 51 | export function createSelectMenu(customId, placeholder, options = [], min = 1, max = 1) { |
| 52 | return new ActionRowBuilder().addComponents( |
| 53 | new StringSelectMenuBuilder() |
| 54 | .setCustomId(customId) |
| 55 | .setPlaceholder(placeholder) |
| 56 | .setMinValues(min) |
| 57 | .setMaxValues(max) |
| 58 | .addOptions(options) |
| 59 | ); |
| 60 | } |
| 61 | |
| 62 | export function createButton(customId, label, style = 'primary', emoji = null, disabled = false) { |
| 63 |
no outgoing calls
no test coverage detected