tableReducer.d.ts 143 B

12
  1. import { Action, TableState } from './types';
  2. export declare function tableReducer<T>(state: TableState<T>, action: Action<T>): TableState<T>;