Interface IDataTableChangeEvent

Change event emitted for real-time data table updates.

interface IDataTableChangeEvent {
    action:
        | "update"
        | "create"
        | "delete"
        | "poll";
    data?: any;
    rowId: string;
    tableId: string;
}

Properties

action:
    | "update"
    | "create"
    | "delete"
    | "poll"

The type of change.

data?: any

Row data (present for created/updated events).

rowId: string

The affected row ID.

tableId: string

The table that changed.