Try to fix Flow issue on Windows (part 4)

This commit is contained in:
Dan Abramov
2018-05-15 14:46:58 +01:00
parent b998357f9d
commit f2252a2ad4
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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};
+1 -1
View File
@@ -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'
+1 -1
View File
@@ -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';