@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
14 lines (13 loc) • 561 B
TypeScript
import { IModule } from './IModule';
import { PreviewInfo } from '../../Utilities/Interface/Preview';
import { AdaptableColumn } from '../../AdaptableState/Common/AdaptableColumn';
import { AdaptableAlert } from '../../AdaptableState/Common/AdaptableAlert';
export interface IBulkUpdateModule extends IModule {
checkCorrectCellSelection(): BulkUpdateValidationResult;
buildPreviewValues(BulkUpdateValue: any): PreviewInfo;
}
export interface BulkUpdateValidationResult {
IsValid: boolean;
Column?: AdaptableColumn;
Alert?: AdaptableAlert;
}