Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.assistantscenter.com/llms.txt

Use this file to discover all available pages before exploring further.

SoftUI.formTypes.emojiPicker(disabled),
disabled
boolean
required
Indicate if the picker should be shown as disabled

Data required for getActualSet function

Object, your emoji object.

Data returned

Object | or null.

Example Usage

{
    optionId: "join_emoji",
    optionName: "Emoji",
    optionDescription: "Which Emoji should I use?",
    optionType: SoftUI.formTypes.emojiPicker(false),
    getActualSet: ({ guild }) => {
      return emoji[guild.id];
    },
    setNew: ({ guild, newData }) => {
      emojiPicker[guild.id] = newData;
      return;
    },
}

Image