yarfl
Version:
Yet Another Redux Forms Library
4 lines (3 loc) • 305 B
TypeScript
import { ActionUnknown, FieldState, FormState, Model } from '../typings';
export declare const createArrayReducer: () => (state: FormState<any>, action: ActionUnknown) => any;
export declare const createNewField: <S extends object>(parentKey: string, template: Model<S, FieldState>, index: number) => {};