Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let _cachedDevServerURL: ?string;
let _cachedFullBundleURL: ?string;
const FALLBACK = 'http://localhost:8081/';

type DevServerInfo = {
export type DevServerInfo = {
url: string,
fullBundleUrl: ?string,
bundleLoadedFromServer: boolean,
Expand Down
3 changes: 3 additions & 0 deletions packages/react-native/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,9 @@ module.exports = {
get findNodeHandle() {
return require('./Libraries/ReactNative/RendererProxy').findNodeHandle;
},
get getDevServer() {
return require('./Libraries/Core/Devtools/getDevServer').default;
},
get I18nManager() {
return require('./Libraries/ReactNative/I18nManager').default;
},
Expand Down
3 changes: 3 additions & 0 deletions packages/react-native/index.js.flow
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,9 @@ export {default as Easing} from './Libraries/Animated/Easing';

export {findNodeHandle} from './Libraries/ReactNative/RendererProxy';

export type {DevServerInfo} from './Libraries/Core/Devtools/getDevServer';
export {default as getDevServer} from './Libraries/Core/Devtools/getDevServer';

export {default as I18nManager} from './Libraries/ReactNative/I18nManager';

export type {
Expand Down
Loading