import type { ListItem } from './ListItem' /** * A list item update payload. */ export interface ListItemUpdate extends Partial { /** * The section of item. */ sectionIndex: number /** * The index of item. */ itemIndex: number }