File tree Expand file tree Collapse file tree 3 files changed +15545
-0
lines changed
packages-exp/auth-exp/src Expand file tree Collapse file tree 3 files changed +15545
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ import {
27
27
ServerError ,
28
28
ServerErrorMap
29
29
} from './errors' ;
30
+ import { Delay } from '../core/util/delay' ;
30
31
31
32
export enum HttpMethod {
32
33
POST = 'POST' ,
Original file line number Diff line number Diff line change @@ -49,6 +49,16 @@ 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
+
52
62
export class UserImpl implements User {
53
63
// For the user object, provider is always Firebase.
54
64
readonly providerId = externs . ProviderId . FIREBASE ;
You can’t perform that action at this time.
0 commit comments