Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@types/service-worker-mock
Advanced tools
TypeScript definitions for service-worker-mock
npm install --save @types/service-worker-mock
This package contains type definitions for service-worker-mock (https://github.com/pinterest/service-workers/tree/master/packages/service-worker-mock#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/service-worker-mock.
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;
}
}
These definitions were written by Remco Haszing.
FAQs
TypeScript definitions for service-worker-mock
We found that @types/service-worker-mock demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.