# EditAction

> _Since v0.1.1_

Represents a single edit action that can be undone/redone *

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `type` | <code>cell-edit</code> | Type of action - currently only 'cell-edit' is supported |
| `rowIndex` | <code>number</code> | The row index where the edit occurred |
| `field` | <code>string</code> | The field (column key) that was edited |
| `oldValue` | <code>unknown</code> | The value before the edit |
| `newValue` | <code>unknown</code> | The value after the edit |
| `timestamp` | <code>number</code> | Unix timestamp when the edit occurred |
