File tree Expand file tree Collapse file tree 3 files changed +0
-26
lines changed Expand file tree Collapse file tree 3 files changed +0
-26
lines changed Original file line number Diff line number Diff line change 38
38
"apps" : {
39
39
"__type" : " array"
40
40
},
41
- "Promise" : {
42
- "__type" : " function" ,
43
- "resolve" : {
44
- "__type" : " function"
45
- },
46
- "reject" : {
47
- "__type" : " function"
48
- },
49
- "all" : {
50
- "__type" : " function"
51
- },
52
- "prototype" : {
53
- "then" : {
54
- "__type" : " function"
55
- },
56
- "catch" : {
57
- "__type" : " function"
58
- }
59
- }
60
- },
61
41
"INTERNAL" : {
62
42
"__type" : " object" ,
63
43
"registerService" : {
Original file line number Diff line number Diff line change @@ -98,10 +98,6 @@ export interface FirebaseNamespace {
98
98
*/
99
99
apps : FirebaseApp [ ] ;
100
100
101
- // Inherit the type information of our exported Promise implementation from
102
- // es6-promises.
103
- Promise : typeof Promise ;
104
-
105
101
// The current SDK version.
106
102
SDK_VERSION : string ;
107
103
}
Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ export function createFirebaseNamespaceCore(
62
62
initializeApp : initializeApp ,
63
63
app : app as any ,
64
64
apps : null as any ,
65
- Promise : Promise ,
66
65
SDK_VERSION : '${JSCORE_VERSION}' ,
67
66
INTERNAL : {
68
67
registerService,
@@ -244,7 +243,6 @@ export function createFirebaseNamespaceCore(
244
243
}
245
244
246
245
const useService = name ;
247
- const options = app . options ;
248
246
249
247
return useService ;
250
248
}
You can’t perform that action at this time.
0 commit comments