{
* committed: true
* }
type Change = {
    cellValue?: string;
    committed?: boolean;
    createdAt?: string;
    createdBy?: string;
    tenantId?: string;
    updatedAt?: string;
}
Index

Properties

cellValue?: string

The value of the cell.

committed?: boolean

Whether the change has been committed.

createdAt?: string

The time when a user starts typing in a cell and the row becomes locked.

createdBy?: string

The id of the user who created the change.

tenantId?: string

The tenant id.

updatedAt?: string

The time when an update to the change has been done. Examples of when this value is updated:

  • User starts typing in a cell, locking the row.
  • User edits an unsaved change.
  • User saves the change.