Interface Service
interface Service {
fetches: Record<string, BackgroundFetchRegistration>;
options: ServiceOptions;
registration?: ServiceWorkerRegistration & {
backgroundFetch: BackgroundFetchManager;
};
fetch(
id: string,
urls: string[],
options: object,
): Promise<BackgroundFetchRegistration>;
message(message: string): Promise<void>;
register(): Promise<ServiceWorkerRegistration>;
unregister(): Promise<void>;
update(): Promise<void>;
}
fetches: Record<string, BackgroundFetchRegistration>;
options: ServiceOptions;
registration?: ServiceWorkerRegistration & {
backgroundFetch: BackgroundFetchManager;
};
fetch(
id: string,
urls: string[],
options: object,
): Promise<BackgroundFetchRegistration>;
message(message: string): Promise<void>;
register(): Promise<ServiceWorkerRegistration>;
unregister(): Promise<void>;
update(): Promise<void>;
}
Index
Properties
Methods
Properties
Readonly
fetches
Get background fetches
Readonly
options
Get service options
Optional
Readonly
registration
Get service worker registration
Methods
fetch
message
register
- register(): Promise<ServiceWorkerRegistration>
Register the service worker
Returns Promise<ServiceWorkerRegistration>
Interface for service worker functionality