grid-table
Version:
Custom react table based on typescript, grid and flex
8 lines (7 loc) • 316 B
TypeScript
import { Observable } from '../customHooks/ObservableHook/observable';
import { TableProps, TableState } from '../ITable';
export default class TableService<T extends any> {
readonly initialState: TableProps<T>;
readonly State: Observable<TableProps<T>>;
setTableState: (props: TableState<T>) => void;
}