@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
15 lines (14 loc) • 410 B
TypeScript
import { Reducer } from 'react';
import { FileDroppableState } from './FileDroppableState';
export declare enum ActionTypes {
DRAG_OVER = "DRAG_OVER",
DRAG_OUT = "DRAG_OUT",
SET_INVALID_FILE = "SET_INVALID_FILE",
DROP_SUCCES = "DROP_SUCCES"
}
export interface Action {
type: ActionTypes;
payload?: any;
}
declare const reducer: Reducer<FileDroppableState, any>;
export default reducer;