$interactionEdit
$interactionEdit will return edit an interaction.
Usage
$interactionEdit[content;allowedMentions?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| content | string | New message content. | true |
| allowedMentions? | string | Allowed mentions? 1. everyone 2. roles 3. users | false |
Example(s)
1module.exports = [2 {3 name: "interactionEdit",4 type: "interaction",5 prototype: "slash",6 code: ` $interactionEdit[Bye, World!]`7 }8];1module.exports = [2 {3 name: "interactionEdit",4 type: "interaction",5 prototype: "slash",6 code: ` $interactionEdit[Bye, World! {newEmbed:{title:Hello!}{description:This is an embed!}}]`7 }8];