Action Rows - shysolocup/willclient GitHub Wiki
Action rows are what puts buttons and selections together on one row
you can have up to 5 action rows per message
Action rows are classes so they are created like this:
let row = new wc.ActionRow([/* stuff */]);
If you want more info on how action rows function this is the code:
ActionRow = class {
constructor(array) {
return { type: 1, components: array };
}
}