[types] Get types properly exporting as part of the build

This commit is contained in:
Chris Bianca
2017-11-17 16:17:27 +00:00
parent 746faad043
commit fbe73f5dcb
20 changed files with 588 additions and 822 deletions

View File

@@ -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 './';

View File

@@ -2,7 +2,7 @@
* @flow
* User representation wrapper
*/
import INTERNALS from './../../internals';
import INTERNALS from '../../utils/internals';
import type Auth from './';

View File

@@ -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';