/** * An update region when table cells get edited. * * * CELL: Edited cells (Default). * * ROW: Rows that edited cells belongs to. * * ALL: All the rows. */ export declare const DTableColumnUpdate: { readonly CELL: 0; readonly ROW: 1; readonly ALL: 2; }; export type DTableColumnUpdate = (typeof DTableColumnUpdate)[keyof typeof DTableColumnUpdate];