Skip to content

Commit 7e99845

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent 2836cf7 commit 7e99845

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

packages/installations/src/index.ts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
*/
1717

1818
import firebase from '@firebase/app';
19-
import {
20-
_FirebaseNamespace
21-
} from '@firebase/app-types/private';
19+
import { _FirebaseNamespace } from '@firebase/app-types/private';
2220
import { FirebaseInstallations } from '@firebase/installations-types';
2321

2422
import { deleteInstallation, getId, getToken } from './functions';
@@ -29,22 +27,24 @@ import { FirebaseApp } from '@firebase/app-types';
2927
export function registerInstallations(instance: _FirebaseNamespace): void {
3028
const installationsName = 'installations';
3129

32-
instance.INTERNAL.registerComponent(new Component(
33-
installationsName,
34-
container => {
35-
const app = container.getProvider<FirebaseApp>('app').getImmediate()!;
36-
// Throws if app isn't configured properly.
37-
extractAppConfig(app);
30+
instance.INTERNAL.registerComponent(
31+
new Component(
32+
installationsName,
33+
container => {
34+
const app = container.getProvider<FirebaseApp>('app').getImmediate()!;
35+
// Throws if app isn't configured properly.
36+
extractAppConfig(app);
3837

39-
return {
40-
app,
41-
getId: () => getId(app),
42-
getToken: () => getToken(app),
43-
delete: () => deleteInstallation(app)
44-
};
45-
},
46-
ComponentType.PUBLIC
47-
));
38+
return {
39+
app,
40+
getId: () => getId(app),
41+
getToken: () => getToken(app),
42+
delete: () => deleteInstallation(app)
43+
};
44+
},
45+
ComponentType.PUBLIC
46+
)
47+
);
4848
}
4949

5050
registerInstallations(firebase as _FirebaseNamespace);

0 commit comments

Comments
 (0)