File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
installations-exp/src/functions Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import {
24
24
ComponentContainer
25
25
} from '@firebase/component' ;
26
26
import { getId , getToken } from '../api/index' ;
27
- import { FirebaseInstallationsInternal } from '@firebase/installations-types-exp' ;
27
+ import { _FirebaseInstallationsInternal } from '@firebase/installations-types-exp' ;
28
28
import { FirebaseInstallationsImpl } from '../interfaces/installation-impl' ;
29
29
import { extractAppConfig } from '../helpers/extract-app-config' ;
30
30
@@ -55,7 +55,7 @@ const internalFactory: InstanceFactory<'installations-exp-internal'> = (
55
55
// Internal FIS instance relies on public FIS instance.
56
56
const installations = _getProvider ( app , INSTALLATIONS_NAME ) . getImmediate ( ) ;
57
57
58
- const installationsInternal : FirebaseInstallationsInternal = {
58
+ const installationsInternal : _FirebaseInstallationsInternal = {
59
59
getId : ( ) => getId ( installations ) ,
60
60
getToken : ( forceRefresh ?: boolean ) => getToken ( installations , forceRefresh )
61
61
} ;
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- import { FirebaseInstallationsImpl } from '../installations-exp/src/interfaces/installation-impl' ;
19
-
20
18
/**
21
19
* @public
22
20
*/
@@ -27,7 +25,7 @@ export interface FirebaseInstallations {}
27
25
*
28
26
* @internal
29
27
*/
30
- export interface FirebaseInstallationsInternal {
28
+ export interface _FirebaseInstallationsInternal {
31
29
/**
32
30
* Creates a Firebase Installation if there isn't one for the app and
33
31
* returns the Installation ID.
@@ -43,6 +41,6 @@ export interface FirebaseInstallationsInternal {
43
41
declare module '@firebase/component' {
44
42
interface NameServiceMapping {
45
43
'installations-exp' : FirebaseInstallations ;
46
- 'installations-exp-internal' : FirebaseInstallationsInternal ;
44
+ 'installations-exp-internal' : _FirebaseInstallationsInternal ;
47
45
}
48
46
}
You can’t perform that action at this time.
0 commit comments