Update index.d.ts

missing prop type in DraggableProps interface
This commit is contained in:
Mateusz Leo
2018-03-21 16:13:50 -07:00
committed by GitHub
parent 55a1b5699f
commit 268ae79d6e

View File

@@ -130,6 +130,7 @@ export interface DraggableProps {
isDragDisabled?: boolean;
disableInteractiveElementBlocking?: boolean;
children(provided: DraggableProvided, snapshot: DraggableStateSnapshot): React.ReactElement<any>;
type?: TypeId;
}
export class Draggable extends React.Component<DraggableProps> {}