File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 25
25
"dependencies" : {
26
26
"@firebase/database-types" : " 0.4.9" ,
27
27
"@firebase/logger" : " 0.1.32" ,
28
- "@firebase/util" : " 0.2.35" ,
28
+ "@firebase/util" : " 0.2.35" ,
29
29
"@firebase/component" : " 0.1.0" ,
30
+ "@firebase/auth-interop-types" : " 0.1.1" ,
30
31
"faye-websocket" : " 0.11.3" ,
31
32
"tslib" : " 1.10.0"
32
33
},
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import { FirebaseDatabase } from '@firebase/database-types';
32
32
* Class representing a firebase database.
33
33
* @implements {FirebaseService}
34
34
*/
35
- export class Database implements FirebaseService , FirebaseDatabase {
35
+ export class Database implements FirebaseService {
36
36
INTERNAL : DatabaseInternals ;
37
37
private root_ : Reference ;
38
38
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export interface ReferenceConstructor {
43
43
new ( repo : Repo , path : Path ) : Reference ;
44
44
}
45
45
46
- export class Reference extends Query implements types . Reference {
46
+ export class Reference extends Query {
47
47
public then : ( a ?: any ) => Promise < any > ;
48
48
public catch : ( a ?: Error ) => Promise < any > ;
49
49
You can’t perform that action at this time.
0 commit comments