{
  "api": {
    "name": "ActionSheetPlugin",
    "slug": "actionsheetplugin",
    "docs": "",
    "tags": [],
    "methods": [
      {
        "name": "showActions",
        "signature": "(options: ShowActionsOptions) => any",
        "parameters": [
          {
            "name": "options",
            "docs": "",
            "type": "ShowActionsOptions"
          }
        ],
        "returns": "any",
        "tags": [
          {
            "name": "since",
            "text": "1.0.0"
          }
        ],
        "docs": "Show an Action Sheet style modal with various options for the user\nto select.",
        "complexTypes": [
          "ShowActionsOptions",
          "ShowActionsResult"
        ],
        "slug": "showactions"
      },
      {
        "name": "cancel",
        "signature": "() => any",
        "parameters": [],
        "returns": "any",
        "tags": [],
        "docs": "",
        "complexTypes": [],
        "slug": "cancel"
      }
    ],
    "properties": []
  },
  "interfaces": [
    {
      "name": "ShowActionsOptions",
      "slug": "showactionsoptions",
      "docs": "",
      "tags": [],
      "methods": [],
      "properties": [
        {
          "name": "title",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "The title of the Action Sheet.",
          "complexTypes": [],
          "type": "string | undefined"
        },
        {
          "name": "message",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "A message to show under the title.\n\nThis option is only supported on iOS.",
          "complexTypes": [],
          "type": "string | undefined"
        },
        {
          "name": "options",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "Options the user can choose from.",
          "complexTypes": [
            "ActionSheetButton"
          ],
          "type": "{}"
        }
      ]
    },
    {
      "name": "ActionSheetButton",
      "slug": "actionsheetbutton",
      "docs": "",
      "tags": [],
      "methods": [],
      "properties": [
        {
          "name": "title",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "The title of the option",
          "complexTypes": [],
          "type": "string"
        },
        {
          "name": "style",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "The style of the option\n\nThis option is only supported on iOS.",
          "complexTypes": [
            "ActionSheetButtonStyle"
          ],
          "type": "ActionSheetButtonStyle"
        },
        {
          "name": "icon",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "Icon for the option (ionicon naming convention)\n\nThis option is only supported on Web.",
          "complexTypes": [],
          "type": "string | undefined"
        }
      ]
    },
    {
      "name": "ShowActionsResult",
      "slug": "showactionsresult",
      "docs": "",
      "tags": [],
      "methods": [],
      "properties": [
        {
          "name": "index",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "The index of the clicked option (Zero-based)",
          "complexTypes": [],
          "type": "number"
        }
      ]
    }
  ],
  "enums": [
    {
      "name": "ActionSheetButtonStyle",
      "slug": "actionsheetbuttonstyle",
      "members": [
        {
          "name": "Default",
          "value": "'DEFAULT'",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "Default style of the option."
        },
        {
          "name": "Destructive",
          "value": "'DESTRUCTIVE'",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "Style to use on destructive options."
        },
        {
          "name": "Cancel",
          "value": "'CANCEL'",
          "tags": [
            {
              "text": "1.0.0",
              "name": "since"
            }
          ],
          "docs": "Style to use on the option that cancels the Action Sheet.\nIf used, should be on the latest availabe option."
        }
      ]
    }
  ],
  "typeAliases": [],
  "pluginConfigs": []
}