| 134 | } |
| 135 | |
| 136 | interface CreateFormHookProps< |
| 137 | TFieldComponents extends Record<string, Component<any>>, |
| 138 | TFormComponents extends Record<string, Component<any>>, |
| 139 | > { |
| 140 | fieldComponents: TFieldComponents |
| 141 | fieldContext: Context<Accessor<AnyFieldApi>> |
| 142 | formComponents: TFormComponents |
| 143 | formContext: Context<AnyFormApi> |
| 144 | } |
| 145 | |
| 146 | type AppFieldExtendedSolidFormApi< |
| 147 | TFormData, |
nothing calls this directly
no outgoing calls
no test coverage detected