Skip to content

Commit

Permalink
Move PropagationTypes to EventPropagators
Browse files Browse the repository at this point in the history
  • Loading branch information
nhunzaker committed Apr 24, 2017
1 parent 1c00c12 commit caccf43
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/renderers/shared/shared/event/BrowserEventConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

var getVendorPrefixedEventName = require('getVendorPrefixedEventName');

export type PropagationPhases = 'bubbled' | 'captured';

/**
* Types of raw signals from the browser caught at the top level.
*
Expand Down
2 changes: 1 addition & 1 deletion src/renderers/shared/shared/event/EventPropagators.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var accumulateInto = require('accumulateInto');
var forEachAccumulated = require('forEachAccumulated');
var warning = require('fbjs/lib/warning');

import type {PropagationPhases} from 'BrowserEventConstants';
type PropagationPhases = 'bubbled' | 'captured';

var getListener = EventPluginHub.getListener;

Expand Down

0 comments on commit caccf43

Please sign in to comment.