mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-04-21 19:11:34 +08:00
[types] Get types properly exporting as part of the build
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// @flow
|
||||
import INTERNALS from './../../internals';
|
||||
import INTERNALS from '../../utils/internals';
|
||||
import { generatePushID, isFunction, isAndroid, isIOS, isString, nativeToJSError } from './../../utils';
|
||||
|
||||
import type Auth from './';
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* @flow
|
||||
* User representation wrapper
|
||||
*/
|
||||
import INTERNALS from './../../internals';
|
||||
import INTERNALS from '../../utils/internals';
|
||||
|
||||
import type Auth from './';
|
||||
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
* Auth representation wrapper
|
||||
*/
|
||||
import User from './User';
|
||||
import ModuleBase from './../../utils/ModuleBase';
|
||||
import INTERNALS from './../../internals';
|
||||
import ModuleBase from '../../utils/ModuleBase';
|
||||
import INTERNALS from '../../utils/internals';
|
||||
import ConfirmationResult from './ConfirmationResult';
|
||||
|
||||
// providers
|
||||
@@ -17,7 +17,7 @@ import FacebookAuthProvider from './providers/FacebookAuthProvider';
|
||||
|
||||
import PhoneAuthListener from './PhoneAuthListener';
|
||||
|
||||
import type FirebaseApp from '../../firebase-app';
|
||||
import type FirebaseApp from '../core/firebase-app';
|
||||
|
||||
export default class Auth extends ModuleBase {
|
||||
static _NAMESPACE = 'auth';
|
||||
|
||||
Reference in New Issue
Block a user