Skip to content

Commit

Permalink
fix(config): Add messagingSenderId to FirebaseAppConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
davideast committed Dec 27, 2016
1 parent f875360 commit 9c84869
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ import * as firebase from 'firebase';
import { Observable } from 'rxjs/Observable';

export interface FirebaseAppConfig {
apiKey: string;
authDomain: string;
databaseURL: string;
storageBucket: string;
apiKey?: string;
authDomain?: string;
databaseURL?: string;
storageBucket?: string;
messagingSenderId?: string;
}

export interface FirebaseOperationCases {
Expand Down

0 comments on commit 9c84869

Please sign in to comment.