File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -268,12 +268,12 @@ export class FirebaseAuth {
268
268
languageCode : string | null ;
269
269
settings : AuthSettings ;
270
270
onAuthStateChanged (
271
- nextOrObserver : Observer < any , any > | ( ( a : User | null ) => any ) ,
271
+ nextOrObserver : Observer < any > | ( ( a : User | null ) => any ) ,
272
272
error ?: ( a : Error ) => any ,
273
273
completed ?: Unsubscribe
274
274
) : Unsubscribe ;
275
275
onIdTokenChanged (
276
- nextOrObserver : Observer < any , any > | ( ( a : User | null ) => any ) ,
276
+ nextOrObserver : Observer < any > | ( ( a : User | null ) => any ) ,
277
277
error ?: ( a : Error ) => any ,
278
278
completed ?: Unsubscribe
279
279
) : Unsubscribe ;
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ export interface UploadTask {
77
77
on (
78
78
event : TaskEvent ,
79
79
nextOrObserver ?:
80
- | Observer < UploadTaskSnapshot , Error >
80
+ | Observer < UploadTaskSnapshot >
81
81
| null
82
82
| ( ( a : UploadTaskSnapshot ) => any ) ,
83
83
error ?: ( ( a : Error ) => any ) | null ,
You can’t perform that action at this time.
0 commit comments