UNPKG

@jsonforms/core

Version:

Core module of JSON Forms

7 lines (6 loc) 433 B
import { AddCellRendererAction, RemoveCellRendererAction } from '../actions'; import { JsonFormsCellRendererRegistryEntry, Reducer } from '../store'; type ValidCellReducerActions = AddCellRendererAction | RemoveCellRendererAction; export type JsonFormsCellRendererRegistryState = JsonFormsCellRendererRegistryEntry[]; export declare const cellReducer: Reducer<JsonFormsCellRendererRegistryState, ValidCellReducerActions>; export {};