Skip to content

Commit 9c84869

Browse files
committed
fix(config): Add messagingSenderId to FirebaseAppConfig
1 parent f875360 commit 9c84869

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/interfaces.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ import * as firebase from 'firebase';
22
import { Observable } from 'rxjs/Observable';
33

44
export interface FirebaseAppConfig {
5-
apiKey: string;
6-
authDomain: string;
7-
databaseURL: string;
8-
storageBucket: string;
5+
apiKey?: string;
6+
authDomain?: string;
7+
databaseURL?: string;
8+
storageBucket?: string;
9+
messagingSenderId?: string;
910
}
1011

1112
export interface FirebaseOperationCases {

0 commit comments

Comments
 (0)