UNPKG

@insightphp/forms

Version:
10 lines (9 loc) 320 B
import type { Component } from "@insightphp/inertia-view"; export interface FormModel<InitialValue = { [key: string]: any; }, ViewComponentProps = any> { initialValue: InitialValue; action: string | null; method: 'post' | 'put' | 'patch' | 'delete' | null; renderAs: Component<ViewComponentProps>; }