Socket
Socket
Sign inDemoInstall

@types/service-worker-mock

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/service-worker-mock

TypeScript definitions for service-worker-mock


Version published
Weekly downloads
12K
decreased by-5.9%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/service-worker-mock

Summary

This package contains type definitions for service-worker-mock (https://github.com/pinterest/service-workers/tree/master/packages/service-worker-mock#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/service-worker-mock.

index.d.ts

export = makeServiceWorkerEnv;
declare function makeServiceWorkerEnv(): WorkerGlobalScope;

declare namespace makeServiceWorkerEnv {
    interface Caches {
        [key: string]: Cache;
    }

    type Listeners = Map<keyof ServiceWorkerGlobalScopeEventMap, EventListener>;

    interface Snapshot {
        /**
         * A key/value map of current cache contents.
         */
        caches: Caches;

        /**
         * A list of active clients.
         */
        clients: Client[];

        /**
         * A list of active notifications.
         */
        notifications: Notification[];
    }
}

declare global {
    /**
     * A key/value map of active listeners (`install`/`activate`/`fetch`/etc).
     */
    const listeners: makeServiceWorkerEnv.Listeners;

    /**
     * Used to trigger active listeners.
     */
    function trigger(type: keyof ServiceWorkerGlobalScopeEventMap): Promise<void>;
    function trigger(name: "fetch", request: string | Request): Promise<void>;
    function trigger(name: "notificationclick" | "notificationclose", args: Notification): Promise<void>;
    function trigger(name: "push", args: Partial<PushEvent>): Promise<void>;
    function trigger(name: "message", args: Partial<MessageEvent>): Promise<void>;

    /**
     * Used to generate a snapshot of the service worker internals.
     */
    function snapshot(): makeServiceWorkerEnv.Snapshot;

    interface WorkerGlobalScope {
        listeners: typeof listeners;
        trigger: typeof trigger;
        snapshot: typeof snapshot;
    }
}

Additional Details

  • Last updated: Wed, 18 Oct 2023 11:45:06 GMT
  • Dependencies: none

Credits

These definitions were written by Remco Haszing.

FAQs

Package last updated on 18 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc