Skip to content

Instantly share code, notes, and snippets.

@tiernan
Last active February 20, 2022 11:04
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save tiernan/11a40d253a55a5c5ff518d6deae3ee48 to your computer and use it in GitHub Desktop.
Save tiernan/11a40d253a55a5c5ff518d6deae3ee48 to your computer and use it in GitHub Desktop.
Typings for using the Service Worker API with TypeScript
/**
*
* DEPRECIATED: Please use the updated type definitions:
* Service Worker Typings to Supplement lib.webworker.d.ts
* https://gist.github.com/tiernan/c18a380935e45a6d942ac1e88c5bbaf3
*
*
* Copyright (c) 2016, Tiernan Cridland
*
* Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby
* granted, provided that the above copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*
* DEPRECIATED: Typings for Service Worker circa 2016
* @author Tiernan Cridland
* @email tiernanc@gmail.com
* @license: ISC
*
* 2018 Update:
* If this file is used in combination with lib.webworker.d.ts you will receive many errors.
* It can still be used with the current lib.es5.d.ts; however, I recommend using the new edition listed at the top of
* this file along with lib.webworker.d.ts and an es5+ library (es5, es2015, etc).
*
* This gist will no longer be maintained.
*/
interface Navigator {
serviceWorker: ServiceWorkerContainer;
}
interface ExtendableEvent extends Event {
waitUntil(fn: Promise<any>): void;
}
interface ServiceWorker extends Worker {
scriptURL: string;
state: ServiceWorkerState;
}
interface ServiceWorkerContainer {
controller?: ServiceWorker;
oncontrollerchange?: (event?: Event) => any;
onerror?: (event?: Event) => any;
onmessage?: (event?: Event) => any;
ready: Promise<ServiceWorkerRegistration>;
getRegistration(scope?: string): Promise<ServiceWorkerRegistration>;
getRegistrations(): Promise<Array<ServiceWorkerRegistration>>;
register(url: string, options?: ServiceWorkerRegistrationOptions): Promise<ServiceWorkerRegistration>;
}
interface ServiceWorkerNotificationOptions {
tag?: string;
}
interface ServiceWorkerRegistration {
active?: ServiceWorker;
installing?: ServiceWorker;
onupdatefound?: (event?: Event) => any;
pushManager: PushManager;
scope: string;
waiting?: ServiceWorker;
getNotifications(options?: ServiceWorkerNotificationOptions): Promise<Array<Notification>>;
update(): void;
unregister(): Promise<boolean>;
}
interface ServiceWorkerRegistrationOptions {
scope?: string;
}
type ServiceWorkerState = "installing" | "installed" | "activating" | "activated" | "redundant";
// CacheStorage API
interface Cache {
add(request: Request): Promise<void>;
addAll(requestArray: Array<Request>): Promise<void>;
'delete'(request: Request, options?: CacheStorageOptions): Promise<boolean>;
keys(request?: Request, options?: CacheStorageOptions): Promise<Array<string>>;
match(request: Request, options?: CacheStorageOptions): Promise<Response>;
matchAll(request: Request, options?: CacheStorageOptions): Promise<Array<Response>>;
put(request: Request|string, response: Response): Promise<void>;
}
interface CacheStorage {
'delete'(cacheName: string): Promise<boolean>;
has(cacheName: string): Promise<boolean>;
keys(): Promise<Array<string>>;
match(request: Request, options?: CacheStorageOptions): Promise<Response>;
open(cacheName: string): Promise<Cache>;
}
interface CacheStorageOptions {
cacheName?: string;
ignoreMethod?: boolean;
ignoreSearch?: boolean;
ignoreVary?: boolean;
}
// Client API
interface Client {
frameType: ClientFrameType;
id: string;
url: string;
}
interface Clients {
claim(): Promise<any>;
get(id: string): Promise<Client>;
matchAll(options?: ClientMatchOptions): Promise<Array<Client>>;
openWindow(url: string): Promise<WindowClient>;
}
interface ClientMatchOptions {
includeUncontrolled?: boolean;
type?: ClientMatchTypes;
}
interface WindowClient {
focused: boolean;
visibilityState: WindowClientState;
focus(): Promise<WindowClient>;
navigate(url: string): Promise<WindowClient>;
}
type ClientFrameType = "auxiliary" | "top-level" | "nested" | "none";
type ClientMatchTypes = "window" | "worker" | "sharedworker" | "all";
type WindowClientState = "hidden" | "visible" | "prerender" | "unloaded";
// Events
interface InstallEvent extends ExtendableEvent {
activeWorker: ServiceWorker;
}
interface ActivateEvent extends ExtendableEvent {
}
// Fetch API
interface Body {
bodyUsed: boolean;
arrayBuffer(): Promise<ArrayBuffer>;
blob(): Promise<Blob>;
formData(): Promise<FormData>;
json(): Promise<any>;
text(): Promise<string>;
}
interface FetchEvent extends ExtendableEvent {
clientId: string;
request: Request;
respondWith(response: Promise<Response>|Response): Promise<Response>;
}
interface Headers {
new(init?: any): Headers;
append(name: string, value: string): void;
'delete'(name: string): void;
entries(): Array<Array<string>>;
get(name: string): string;
getAll(name: string): Array<string>;
has(name: string): boolean;
keys(): Array<string>;
set(name: string, value: string): void;
values(): Array<string>;
}
interface Request extends Body {
new(url: string, init?: {
method?: string,
url?: string,
referrer?: string,
mode?: RequestMode,
credentials?: RequestCredentials,
redirect?: RequestRedirect,
integrity?: string,
cache?: RequestCache,
headers?: Headers
}): Request;
cache: RequestCache;
credentials: RequestCredentials;
headers: Headers;
integrity: string;
method: string;
mode: RequestMode;
referrer: string;
referrerPolicy: ReferrerPolicy;
redirect: RequestRedirect;
url: string;
clone(): Request;
}
interface Response extends Body {
new(url: string): Response;
new(body: Blob|BufferSource|FormData|String, init: {
status?: number,
statusText?: string,
headers?: Headers|{ [k: string]: string }
}): Response;
headers: Headers;
ok: boolean;
redirected: boolean;
status: number;
statusText: string;
type: ResponseType;
url: string;
useFinalURL: boolean;
clone(): Response;
error(): Response;
redirect(): Response;
}
// Notification API
interface Notification {
body: string;
data: any;
icon: string;
lang: string;
requireInteraction: boolean;
silent: boolean;
tag: string;
timestamp: number;
title: string;
close(): void;
requestPermission(): Promise<string>;
}
interface NotificationEvent {
action: string;
notification: Notification;
}
// Push API
interface PushEvent extends ExtendableEvent {
data: PushMessageData;
}
interface PushManager {
getSubscription(): Promise<PushSubscription>;
permissionState(): Promise<string>;
subscribe(): Promise<PushSubscription>;
}
interface PushMessageData {
arrayBuffer(): ArrayBuffer;
blob(): Blob;
json(): any;
text(): string;
}
interface PushSubscription {
endpoint: string;
getKey(method: string): ArrayBuffer;
toJSON(): string;
unsubscribe(): Promise<boolean>;
}
// Sync API
interface SyncEvent extends Event {
lastChance: boolean;
tag: string;
}
// ServiceWorkerGlobalScope
declare var Headers: Headers;
declare var Response: Response;
declare var Request: Request;
declare var caches: CacheStorage;
declare var clients: Clients;
declare var onactivate: (event?: ActivateEvent) => any;
declare var onfetch: (event?: FetchEvent) => any;
declare var oninstall: (event?: InstallEvent) => any;
declare var onmessage: (event: MessageEvent) => any;
declare var onnotificationclick: (event?: NotificationEvent) => any;
declare var onnotificationclose: (event?: NotificationEvent) => any;
declare var onpush: (event?: PushEvent) => any;
declare var onpushsubscriptionchange: () => any;
declare var onsync: (event?: SyncEvent) => any;
declare var registration: ServiceWorkerRegistration;
declare function fetch(request: Request|string): Promise<Response>;
declare function skipWaiting(): void;
@OliverJAsh
Copy link

Can we add these to DefinitelyTyped?

@phil-lgr
Copy link

Thanks for this. Any idea on using it with typings aware IDE (WebStorm)? Since this will override a bunch of interface in lib.es6.d.ts?

@tiernan
Copy link
Author

tiernan commented Nov 28, 2017

@OliverJAsh Please feel free to if you have the time. I'll look into it later otherwise. I've never added anything to their repo before.

@phil-lgr I initially created this to use with WebStorm and did so successfully. I'll have to look into using it with lib.es6.d.ts when I have the chance, but that may not be for some time.

@dwaite
Copy link

dwaite commented Apr 1, 2018

any example of this in use? I can't seem to fix conflicts.

@tiernan
Copy link
Author

tiernan commented Apr 13, 2018

Hi @dwaite, I just published a new gist to supplement the lib.webworker.d.ts definitions: Service Worker Typing to Supplement lib.webworker.d.ts.
The new edition can be imported to the necessary files with a triple slash directive and is more relevant today. It requires the webworker and an an es5+ library to work correctly.

As for an example of using this gist, I used it in this project along with the WebStorm IDE: Jay Walker, use: service-worker.ts

@IAMtheIAM
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment