Skip to content

Commit 170ab09

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent f8e9d2d commit 170ab09

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

packages/component/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
export { Component } from './src/component';
1919
export { ComponentContainer } from './src/component_container';
2020
export { Provider } from './src/provider';
21-
export { ComponentType, InstanceFactory} from './src/types'
21+
export { ComponentType, InstanceFactory } from './src/types';

packages/component/src/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
import { ComponentContainer } from './component_container';
1919

2020
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'
2323
}
2424

2525
/**

packages/component/test/util.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@
1616
*/
1717
import { DEFAULT_ENTRY_NAME } from '../src/constants';
1818
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';
2024
import { Component } from '../src/component';
2125

2226
export function getFakeApp(appName: string = DEFAULT_ENTRY_NAME): FirebaseApp {

0 commit comments

Comments
 (0)