Skip to content

Commit

Permalink
Try to fix Flow issue on Windows (part 4)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed May 15, 2018
1 parent b998357 commit f2252a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/events/PluginModuleType.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type {
DispatchConfig,
ReactSyntheticEvent,
} from './ReactSyntheticEventType';
import type {TopLevelType} from './TopLevelEventTypes';
import type {TopLevelType} from 'events/TopLevelEventTypes';

export type EventTypes = {[key: string]: DispatchConfig};

Expand Down
2 changes: 1 addition & 1 deletion packages/events/TopLevelEventTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @flow
*/

import type {DOMTopLevelEventType} from '../react-dom/src/events/DOMTopLevelEventTypes';
import type {DOMTopLevelEventType} from 'react-dom/src/events/DOMTopLevelEventTypes';

type RNTopLevelEventType =
| 'topMouseDown'
Expand Down
2 changes: 1 addition & 1 deletion packages/react-dom/src/events/SimpleEventPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import type {EventTypes, PluginModule} from 'events/PluginModuleType';
import {accumulateTwoPhaseDispatches} from 'events/EventPropagators';
import SyntheticEvent from 'events/SyntheticEvent';

import * as DOMTopLevelEventTypes from './DOMTopLevelEventTypes';
import * as DOMTopLevelEventTypes from 'react-dom/src/events/DOMTopLevelEventTypes';
import warning from 'fbjs/lib/warning';

import SyntheticAnimationEvent from './SyntheticAnimationEvent';
Expand Down

0 comments on commit f2252a2

Please sign in to comment.