File tree Expand file tree Collapse file tree 4 files changed +1
-21
lines changed Expand file tree Collapse file tree 4 files changed +1
-21
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ import {
27
27
ServerError ,
28
28
ServerErrorMap
29
29
} from './errors' ;
30
- import { Delay } from '../core/util/delay' ;
31
30
32
31
export enum HttpMethod {
33
32
POST = 'POST' ,
Original file line number Diff line number Diff line change 1
1
/**
2
2
* @license
3
- <<<<<<< HEAD
4
3
* Copyright 2019 Google LLC
5
- =======
6
- * Copyright 2019 Google Inc.
7
- >>>>>>> 6b951a1c... Add react native persistence class (#2955)
8
4
*
9
5
* Licensed under the Apache License, Version 2.0 (the "License");
10
6
* you may not use this file except in compliance with the License.
18
14
* See the License for the specific language governing permissions and
19
15
* limitations under the License.
20
16
*/
17
+
21
18
import { ReactNativeAsyncStorage } from '@firebase/auth-types-exp' ;
22
19
23
20
import {
Original file line number Diff line number Diff line change @@ -49,16 +49,6 @@ function assertStringOrUndefined(
49
49
) ;
50
50
}
51
51
52
- function assertStringOrUndefined (
53
- assertion : unknown ,
54
- appName : string
55
- ) : asserts assertion is string | undefined {
56
- assert (
57
- typeof assertion === 'string' || typeof assertion === 'undefined' ,
58
- appName
59
- ) ;
60
- }
61
-
62
52
export class UserImpl implements User {
63
53
// For the user object, provider is always Firebase.
64
54
readonly providerId = externs . ProviderId . FIREBASE ;
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- < < < << << HEAD
19
18
import {
20
19
CompleteFn ,
21
20
ErrorFn ,
@@ -360,13 +359,10 @@ export interface PhoneInfoOptions {
360
359
// multiFactorHint?: MultiFactorInfo;
361
360
}
362
361
363
- = === ===
364
- >>> >>> > 6 b951a1c ... Add react native persistence class ( #2955 )
365
362
export interface ReactNativeAsyncStorage {
366
363
setItem ( key : string , value : string ) : Promise < void > ;
367
364
getItem ( key : string ) : Promise < string | null > ;
368
365
removeItem ( key : string ) : Promise < void > ;
369
- < < << << < HEAD
370
366
}
371
367
372
368
/**
@@ -414,6 +410,4 @@ export interface UserInfo {
414
410
export interface UserMetadata {
415
411
readonly creationTime ?: string ;
416
412
readonly lastSignInTime ?: string ;
417
- === === =
418
- >>> >>> > 6 b951a1c ... Add react native persistence class ( #2955 )
419
413
}
You can’t perform that action at this time.
0 commit comments