File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 18
18
export { Component } from './src/component' ;
19
19
export { ComponentContainer } from './src/component_container' ;
20
20
export { Provider } from './src/provider' ;
21
- export { ComponentType , InstanceFactory } from './src/types'
21
+ export { ComponentType , InstanceFactory } from './src/types' ;
Original file line number Diff line number Diff line change 18
18
import { ComponentContainer } from './component_container' ;
19
19
20
20
export const enum InstantiationMode {
21
- LAZY = " LAZY" , // Currently all components are LAZY in JS SDK
22
- EAGER = " EAGER"
21
+ LAZY = ' LAZY' , // Currently all components are LAZY in JS SDK
22
+ EAGER = ' EAGER'
23
23
}
24
24
25
25
/**
Original file line number Diff line number Diff line change 16
16
*/
17
17
import { DEFAULT_ENTRY_NAME } from '../src/constants' ;
18
18
import { FirebaseApp } from '@firebase/app-types' ;
19
- import { InstanceFactory , InstantiationMode , ComponentType } from '../src/types' ;
19
+ import {
20
+ InstanceFactory ,
21
+ InstantiationMode ,
22
+ ComponentType
23
+ } from '../src/types' ;
20
24
import { Component } from '../src/component' ;
21
25
22
26
export function getFakeApp ( appName : string = DEFAULT_ENTRY_NAME ) : FirebaseApp {
You can’t perform that action at this time.
0 commit comments