From 20319d09096758ace31ea6b406ac8ba2780a8bc9 Mon Sep 17 00:00:00 2001 From: Phil Nova Date: Mon, 19 Mar 2018 21:41:09 -0700 Subject: [PATCH] Make destination nullable --- types/react-beautiful-dnd/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-beautiful-dnd/index.d.ts b/types/react-beautiful-dnd/index.d.ts index 063fc43a0c..02bc9eaab1 100644 --- a/types/react-beautiful-dnd/index.d.ts +++ b/types/react-beautiful-dnd/index.d.ts @@ -29,7 +29,7 @@ export interface DragStart { } export interface DragUpdate extends DragStart { - destination?: DraggableLocation; + destination?: DraggableLocation | null; } export interface DropResult {