Files
react-navigation/src/PlatformHelpers.web.js
Brent Vatne ecfa38bfd2 Remove flow (#3350)
* Remove flow types from src

* Finish removing Flow

* Clear out flow-typed, some flow mentions in docs, website flow usage, and some other config
2018-01-24 17:52:09 -08:00

10 lines
217 B
JavaScript

export const Linking = {
addEventListener: () => {},
removeEventListener: () => {},
getInitialURL: () => Promise.reject('Unsupported platform'),
};
export const BackHandler = {
addEventListener: () => {},
};