@beta
type
ArrayActionName
Types of array actions that can be performed
Import
import {type ArrayActionName} from 'sanity'
Signature
type ArrayActionName = | 'add'
/**
* Add item after an existing item
*/
| 'addBefore'
/**
* Add item after an existing item
*/
| 'addAfter'
/**
* Remove any item
*/
| 'remove'
/**
* Duplicate item
*/
| 'duplicate'
/**
* Copy item
*/
| 'copy'
type ArrayActionName = | 'add'
/**
* Add item after an existing item
*/
| 'addBefore'
/**
* Add item after an existing item
*/
| 'addAfter'
/**
* Remove any item
*/
| 'remove'
/**
* Duplicate item
*/
| 'duplicate'
/**
* Copy item
*/
| 'copy'