Action
export type Action =
| ActionOpenURL
| ActionPaste
| ActionCopy
| ActionShowToast
| ActionMove;
type ActionMove = ActionMoveAddParam;ActionOpenURL
{
"action": {
"type": "open-url",
"url": "https://slapdash.com/",
}
}{
"action": {
"type": "open-url",
"url": [
"https://google.com/",
"https://bing.com/"
]
}
}{
"view": {
"type": "list",
"options": [
{
"title": "Open Google",
"action": {
"type": "open-url",
"url": "https://www.google.com/"
}
},
{
"title": "Open Bing",
"action": {
"type": "open-url",
"url": "https://www.bing.com/"
}
}
]
}
}ActionPaste
ActionCopy
ActionShowToast
ActionMoveAddParam
Last updated