Interface Service

Interface for service worker functionality

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>;
}

Properties

fetches: Record<string, BackgroundFetchRegistration>

Get background fetches

Get service options

registration?: ServiceWorkerRegistration & {
    backgroundFetch: BackgroundFetchManager;
}

Get service worker registration

Methods

  • Fetch resources in the background

    Parameters

    • id: string

      Fetch ID

    • urls: string[]

      URLs to fetch

    • options: object

      Fetch options

    Returns Promise<BackgroundFetchRegistration>