Reverted fetch usage

This commit is contained in:
2017-12-01 19:37:19 +01:00
parent 9c0f066053
commit e730542c63
3 changed files with 270 additions and 236 deletions

6
sw/index.d.ts vendored
View File

@ -652,5 +652,11 @@ interface ServiceWorkerGlobalScope extends EventTarget {
): void;
}
interface NotificationOptions {
image?: string;
data?: string;
badge?: string;
}
// tslint:disable-next-line no-empty-interface
interface Window extends ServiceWorkerGlobalScope {}