UNPKG

239 BTypeScriptView Raw
1import { FormStateMap } from "../index";
2
3export function formValueSelector<State = {}>(
4 form: string,
5 getFormState?: (state: State) => FormStateMap,
6): (state: State, ...field: string[]) => any;
7
8export default formValueSelector;