Make destination nullable

This commit is contained in:
Phil Nova
2018-03-19 21:41:09 -07:00
committed by GitHub
parent c5dddbcb97
commit 20319d0909

View File

@@ -29,7 +29,7 @@ export interface DragStart {
}
export interface DragUpdate extends DragStart {
destination?: DraggableLocation;
destination?: DraggableLocation | null;
}
export interface DropResult {