ArrayInputPropsinterface
{
one?: string;
many?: string;
min?: number | undefined;
max?: number | undefined;
items: Schema<T>;
}| Property | Type | |
|---|---|---|
.one | string | |
.many | string | |
.min | number | |
.max | number | |
.items | Schema<T> | Schema for the items in the repeater. required |
Props for ArrayInput, a repeating input that edits an array of schema-validated items.