From efa6b9e11eb0167547d6611490be48b94bc8d7ea Mon Sep 17 00:00:00 2001 From: Julia Shestakova Date: Tue, 25 Jun 2019 10:09:08 +0300 Subject: [PATCH] Fix react-beautiful-dnd DropAnimation types (#36345) --- types/react-beautiful-dnd/v10/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/react-beautiful-dnd/v10/index.d.ts b/types/react-beautiful-dnd/v10/index.d.ts index 6c9334c670..820c62ff4b 100644 --- a/types/react-beautiful-dnd/v10/index.d.ts +++ b/types/react-beautiful-dnd/v10/index.d.ts @@ -192,6 +192,11 @@ export interface DraggableStateSnapshot { mode?: MovementMode; } +export interface Position { + x: number; + y: number; +} + export interface DropAnimation { duration: number; curve: string;