Skip to content

Commit fd9c035

Browse files
committed
Remove FirebaseService typing change
1 parent 80afcdc commit fd9c035

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

packages-exp/app-compat/src/types.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
import { FirebaseApp, FirebaseNamespace } from './public-types';
2424
import { Component, ComponentContainer } from '@firebase/component';
25-
import { FirebaseApp as FirebaseAppExp } from '@firebase/app-exp';
2625

2726
export interface FirebaseServiceInternals {
2827
/**
@@ -32,22 +31,11 @@ export interface FirebaseServiceInternals {
3231
delete(): Promise<void>;
3332
}
3433

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-
4534
// Services are exposed through instances - each of which is associated with a
4635
// FirebaseApp.
4736
// eslint-disable-next-line @typescript-eslint/naming-convention
4837
export interface _FirebaseService {
4938
app: FirebaseApp;
50-
_delegate: FirebaseServiceExp;
5139
INTERNAL?: FirebaseServiceInternals;
5240
}
5341

0 commit comments

Comments
 (0)