File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
declare namespace firebase {
17
- type CompleteFn = ( ) => undefined ;
17
+ type CompleteFn = ( ) => void ;
18
18
19
19
interface FirebaseError {
20
20
code : string ;
@@ -35,7 +35,7 @@ declare namespace firebase {
35
35
static resolve < T > ( value ? : T ) : firebase . Promise < T > ;
36
36
}
37
37
class Promise_Instance < T > implements firebase . Thenable < any > {
38
- constructor ( resolver : ( a : ( a : T ) => undefined , b : ( a : Error ) => undefined ) => any ) ;
38
+ constructor ( resolver : ( a : ( a : T ) => void , b : ( a : Error ) => void ) => any ) ;
39
39
catch ( onReject ? : ( a : Error ) => any ) : firebase . Thenable < any > ;
40
40
then ( onResolve ? : ( a : T ) => any , onReject ? : ( a : Error ) => any ) : firebase . Promise < any > ;
41
41
}
@@ -47,7 +47,7 @@ declare namespace firebase {
47
47
then ( onResolve ? : ( a : T ) => any , onReject ? : ( a : Error ) => any ) : firebase . Thenable < any > ;
48
48
}
49
49
50
- type Unsubscribe = ( ) => undefined ;
50
+ type Unsubscribe = ( ) => void ;
51
51
52
52
interface User extends firebase . UserInfo {
53
53
delete ( ) : firebase . Promise < any > ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
declare namespace firebase {
17
- type CompleteFn = ( ) => undefined ;
17
+ type CompleteFn = ( ) => void ;
18
18
19
19
interface FirebaseError {
20
20
code : string ;
@@ -47,7 +47,7 @@ declare namespace firebase {
47
47
then ( onResolve ? : ( a : T ) => any , onReject ? : ( a : Error ) => any ) : firebase . Thenable < any > ;
48
48
}
49
49
50
- type Unsubscribe = ( ) => undefined ;
50
+ type Unsubscribe = ( ) => void ;
51
51
52
52
interface User extends firebase . UserInfo {
53
53
delete ( ) : firebase . Promise < any > ;
You can’t perform that action at this time.
0 commit comments