File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
packages-exp/app-compat/src Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change 22
22
23
23
import { FirebaseApp , FirebaseNamespace } from './public-types' ;
24
24
import { Component , ComponentContainer } from '@firebase/component' ;
25
- import { FirebaseApp as FirebaseAppExp } from '@firebase/app-exp' ;
26
25
27
26
export interface FirebaseServiceInternals {
28
27
/**
@@ -32,22 +31,11 @@ export interface FirebaseServiceInternals {
32
31
delete ( ) : Promise < void > ;
33
32
}
34
33
35
- /**
36
- * Public type for exp Firebase Service - can't use _FirebaseService from
37
- * @firebase /app-exp because it requires _delete, which isn't visible on the
38
- * public instance. The -compat packages can only see the public properties
39
- * of the _delegate exp instance.
40
- */
41
- interface FirebaseServiceExp {
42
- app : FirebaseAppExp ;
43
- }
44
-
45
34
// Services are exposed through instances - each of which is associated with a
46
35
// FirebaseApp.
47
36
// eslint-disable-next-line @typescript-eslint/naming-convention
48
37
export interface _FirebaseService {
49
38
app : FirebaseApp ;
50
- _delegate : FirebaseServiceExp ;
51
39
INTERNAL ?: FirebaseServiceInternals ;
52
40
}
53
41
You can’t perform that action at this time.
0 commit comments