Skip to content

Commit a14c231

Browse files
committed
rebased
1 parent 22d6306 commit a14c231

File tree

4 files changed

+1
-21
lines changed

4 files changed

+1
-21
lines changed

packages-exp/auth-exp/src/api/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import {
2727
ServerError,
2828
ServerErrorMap
2929
} from './errors';
30-
import { Delay } from '../core/util/delay';
3130

3231
export enum HttpMethod {
3332
POST = 'POST',

packages-exp/auth-exp/src/core/persistence/react_native.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
/**
22
* @license
3-
<<<<<<< HEAD
43
* Copyright 2019 Google LLC
5-
=======
6-
* Copyright 2019 Google Inc.
7-
>>>>>>> 6b951a1c... Add react native persistence class (#2955)
84
*
95
* Licensed under the Apache License, Version 2.0 (the "License");
106
* you may not use this file except in compliance with the License.
@@ -18,6 +14,7 @@
1814
* See the License for the specific language governing permissions and
1915
* limitations under the License.
2016
*/
17+
2118
import { ReactNativeAsyncStorage } from '@firebase/auth-types-exp';
2219

2320
import {

packages-exp/auth-exp/src/core/user/user_impl.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,6 @@ function assertStringOrUndefined(
4949
);
5050
}
5151

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-
6252
export class UserImpl implements User {
6353
// For the user object, provider is always Firebase.
6454
readonly providerId = externs.ProviderId.FIREBASE;

packages-exp/auth-types-exp/index.d.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
* limitations under the License.
1616
*/
1717

18-
<<<<<<< HEAD
1918
import {
2019
CompleteFn,
2120
ErrorFn,
@@ -360,13 +359,10 @@ export interface PhoneInfoOptions {
360359
// multiFactorHint?: MultiFactorInfo;
361360
}
362361

363-
=======
364-
>>>>>>> 6b951a1c... Add react native persistence class (#2955)
365362
export interface ReactNativeAsyncStorage {
366363
setItem(key: string, value: string): Promise<void>;
367364
getItem(key: string): Promise<string | null>;
368365
removeItem(key: string): Promise<void>;
369-
<<<<<<< HEAD
370366
}
371367

372368
/**
@@ -414,6 +410,4 @@ export interface UserInfo {
414410
export interface UserMetadata {
415411
readonly creationTime?: string;
416412
readonly lastSignInTime?: string;
417-
=======
418-
>>>>>>> 6b951a1c... Add react native persistence class (#2955)
419413
}

0 commit comments

Comments
 (0)