ducks.form.Actions.d.ts Maven / Gradle / Ivy
The newest version!
import { Action, Meta } from '../Action'
import { Field, Form } from './types'
export interface FormPayload {
formName: string
}
export type Tooltip = string | null
export type FormAction<
TPayload extends FormPayload,
TMeta extends Meta = Meta,
> = Action
export type RegisterAction = FormAction<{
formName: string
initState: Partial