ArrayInputPropsinterface

{
	one?: string;
	many?: string;
	min?: number | undefined;
	max?: number | undefined;
	items: Schema<T>;
}
PropertyType
.onestring
.manystring
.minnumber
.maxnumber
.itemsSchema<T>
Schema for the items in the repeater. required

Props for ArrayInput, a repeating input that edits an array of schema-validated items.