ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
24 lines (23 loc) • 673 B
TypeScript
import { RowNode } from "../entities/rowNode";
export interface ServerSideTransaction {
route?: string[];
addIndex?: number;
add?: any[];
remove?: any[];
update?: any[];
}
export interface ServerSideTransactionResult {
status: ServerSideTransactionResultStatus;
add?: RowNode[];
remove?: RowNode[];
update?: RowNode[];
}
export declare enum ServerSideTransactionResultStatus {
StoreNotFound = "StoreNotFound",
StoreLoading = "StoreLoading",
StoreWaitingToLoad = "StoreWaitingToLoad",
StoreLoadingFailed = "StoreLoadingFailed",
StoreWrongType = "StoreWrongType",
Applied = "Applied",
Cancelled = "Cancelled"
}