Fix react-beautiful-dnd DropAnimation types (#36345)

This commit is contained in:
Julia Shestakova
2019-06-25 10:09:08 +03:00
committed by Daniel Rosenwasser
parent f6da6d304a
commit efa6b9e11e

View File

@@ -192,6 +192,11 @@ export interface DraggableStateSnapshot {
mode?: MovementMode;
}
export interface Position {
x: number;
y: number;
}
export interface DropAnimation {
duration: number;
curve: string;