Skip to content

Commit

Permalink
Merge pull request #364 from amccloud/patch-1
Browse files Browse the repository at this point in the history
Update for flow@0.82.0
  • Loading branch information
bokuweb authored Oct 21, 2018
2 parents 588f1e3 + 15a5cde commit 3cf94a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ const baseClassName = '__resizable_base__';
export default class Resizable extends React.Component<ResizableProps, State> {
resizable: React.ElementRef<'div'>;
onTouchMove: ResizeCallback;
onMouseMove: ResizeCallback;
onMouseUp: ResizeCallback;
onMouseMove: (event: MouseEvent | TouchEvent) => void;
onMouseUp: (event: MouseEvent | TouchEvent) => void;
onResizeStart: OnStartCallback;
extendsProps: { [key: string]: any };

Expand Down

0 comments on commit 3cf94a9

Please sign in to comment.