UNPKG

slurpcord

Version:
17 lines (15 loc) 315 B
export default class ActionRow { constructor() { this.type = 1; this.components = []; } addButton(button) { this.components.push(button.toJSON()); } toJSON() { return { type: this.type, components: this.components, }; } }