/**
 * Defines where a Data Change should be monitored
 */
export interface DataChangedScope {
    /**
     * Scopes every Column in the Row
     */
    wholeRow: boolean;
    /**
     * Scopes a group of Column Ids
     */
    columnIds: Set<string>;
}
