Repository URL to install this package:
|
Version:
3.7.2 ▾
|
import { InputState } from '../inputs/InputState'
import { InputConfig } from '../inputs/typings'
import { FormState } from '../forms/FormState'
import { OneFormState } from './OneFormState'
export type OnPreFill = (inputState: InputState) => void
export interface CompatObserverFormProps {
state?: OneFormState | FormState
inputsList?: InputConfig[]
}
export interface ComputedFormStateProps {
state: FormState
inputsList: InputConfig[]
onPreFill?: OnPreFill
}