export interface RowDataTransaction { /** Index to add rows */ addIndex?: number | null; /** Rows to add */ add?: TData[] | null; /** Rows to remove */ remove?: TData[] | null; /** Rows to update */ update?: TData[] | null; }