fix(service-worker): Fix public api guard typing (#25860)

PR Close #25860
This commit is contained in:
Joost Zöllner
2018-09-28 10:28:53 +02:00
committed by Kara Erickson
parent 10618752e6
commit 4a01ada291
8 changed files with 29 additions and 29 deletions

View File

@ -52,8 +52,6 @@ interface StatusEvent {
error?: string;
}
export interface NotificationObject extends NotificationOptions { title: string; }
function errorObservable(message: string): Observable<any> {
return defer(() => throwError(new Error(message)));