-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauth-mixin.d.ts
210 lines (168 loc) · 3.52 KB
/
auth-mixin.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/**
* DO NOT EDIT
*
* This file was automatically generated by
* https://github.com/Polymer/gen-typescript-declarations
*
* To modify these typings, edit the source file(s):
* auth-mixin.js
*/
declare namespace Fabric {
/**
* `Fabric.AuthMixin`
*/
function AuthMixin<T extends new (...args: any[]) => {}>(base: T): T & AuthMixinConstructor;
interface AuthMixinConstructor {
new(...args: any[]): AuthMixin;
}
interface AuthMixin {
/**
* ign-in provider with pop-up.
*/
popup: boolean|null|undefined;
/**
* Allow Google Sign-in.
*/
google: boolean|null|undefined;
/**
* Allow Facebook Sign-in.
*/
facebook: boolean|null|undefined;
/**
* Allow Twitter Sign-in.
*/
twitter: boolean|null|undefined;
/**
* Allow GitHub Sign-in.
*/
github: boolean|null|undefined;
/**
* Allow Email Sign-in.
*/
email: boolean|null|undefined;
/**
* Allow anonymous Sign-in.
*/
anonymous: boolean|null|undefined;
/**
* Allow phone number Sign-in.
*/
phone: boolean|null|undefined;
/**
* Error
*/
error: object|null|undefined;
/**
* Currently open view.
*/
selected: string|null|undefined;
/**
* Available providers for the given email.
*/
availableProviders: object|null|undefined;
/**
* The minimum length of the input value.
*/
minLength: number|null|undefined;
/**
* Disable email input on sign-up form
*/
disabled: boolean|null|undefined;
/**
* User email
*/
userEmail: string|null|undefined;
/**
* User password
*/
userPassword: string|null|undefined;
/**
* Phone number
*/
phoneNumber: string|null|undefined;
/**
* Phone code
*/
phoneCode: string|null|undefined;
/**
* Confirmation code
*/
confirmationCode: string|null|undefined;
/**
* User object
*/
user: object|null|undefined;
/**
* User is signedIn
*/
signedIn: boolean|null|undefined;
/**
* Country dial codes.
*/
dialingCodes: any[]|null|undefined;
/**
* connectedCallback
*/
connectedCallback(): void;
/**
* Google Sign-in function.
*/
signInGoogle(): void;
/**
* Facebook Sign-in function.
*/
signInFacebook(): void;
/**
* Twitter Sign-in function.
*/
signInTwitter(): void;
/**
* GitHub Sign-in function.
*/
signInGitHub(): void;
/**
* Anonymous Sign-in function.
*/
signInAnonymously(): void;
/**
* Sign In the user.
*/
_signIn(provider: firebase.auth.AuthProvider|null): void;
/**
* Checks if there's any provider for the given email
*/
fetchEmailProviders(): void;
/**
* Sign In with email and password.
*/
signInWithEmailAndPassword(e: object|null): void;
/**
* Password reset.
*/
passwordReset(): void;
/**
* Create user with email and password.
*/
createUserWithEmailAndPassword(): void;
/**
* Sign In with phone number.
*/
signInWithPhone(): void;
/**
* Confirmation code screen.
*/
showConfirmationCodeScreen(): void;
/**
* Sign in the user by passing the code to the confirm method.
*/
confirmCode(): void;
/**
* sign out
*/
signOut(): firebase.Thenable<any>;
/**
* Reset email and password
*/
clear(): void;
}
}