ToFlatFormArray<T, Atomic, RawOuter>
ts
type ToFlatFormArray<T, Atomic, RawOuter> = T extends infer U ? ToForm<U, Atomic, RawOuter> : never;Defined in: types/to-form.type.ts:43
Core implementation of array mapping, resolving the element type and passing it to ToForm.
Type Parameters
| Type Parameter | Default type | Description |
|---|---|---|
T | - | The array type. |
Atomic | ToFormDefaultAtomic | Atomic types passed directly to controls. |
RawOuter extends boolean | false | Determines wrapping of nested structures. |
Since
1.2.0
Author
Ian Wenneckers