Better DropAnimation typings (#37197)

Change reference of Position to the local interface.
This commit is contained in:
Eugeny Voronin 2019-08-07 01:14:14 +03:00 committed by Nathan Shively-Sanders
parent 0e7421f1c7
commit 693374319f

View File

@ -200,6 +200,11 @@ export interface DropAnimation {
scale?: number;
}
export interface Position {
x: number;
y: number;
}
export interface DraggableProps {
draggableId: DroppableId;
index: number;