From 268ae79d6eff287618131dbde3910aa663d69677 Mon Sep 17 00:00:00 2001 From: Mateusz Leo Date: Wed, 21 Mar 2018 16:13:50 -0700 Subject: [PATCH] Update index.d.ts missing prop type in DraggableProps interface --- types/react-beautiful-dnd/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-beautiful-dnd/index.d.ts b/types/react-beautiful-dnd/index.d.ts index 02bc9eaab1..e1dd58a179 100644 --- a/types/react-beautiful-dnd/index.d.ts +++ b/types/react-beautiful-dnd/index.d.ts @@ -130,6 +130,7 @@ export interface DraggableProps { isDragDisabled?: boolean; disableInteractiveElementBlocking?: boolean; children(provided: DraggableProvided, snapshot: DraggableStateSnapshot): React.ReactElement; + type?: TypeId; } export class Draggable extends React.Component {}