UNPKG

@insightphp/forms

Version:
9 lines (7 loc) 294 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> }