Skip to content

Interface: DataChangeEvent\<TRow\>

Defined in: src/data/types.ts:166

Event describing a data change from the backend.

Type Parameters

TRow

TRow

Properties

rows?

optional rows?: object[]

Defined in: src/data/types.ts:170

Affected rows (for add/update/delete).

data?

optional data?: TRow

id

id: string

parentId?

optional parentId?: string | null


type

type: "add" | "update" | "delete" | "refresh"

Defined in: src/data/types.ts:168

The type of change.