[redux-form] Add FieldsProps.move

This commit is contained in:
Sean Nichols
2018-08-03 12:44:52 -04:00
parent 7c33a95827
commit 26de87320e

View File

@@ -42,6 +42,7 @@ interface FieldsProps<FieldValue> {
remove(index: number): void;
shift(): FieldValue;
swap(indexA: number, indexB: number): void;
move(from: number, to: number): void;
unshift(value: FieldValue): void;
}