Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@types/pubsub-js
Advanced tools
TypeScript definitions for pubsub-js
npm install --save @types/pubsub-js
This package contains type definitions for pubsub-js (https://github.com/mroderick/PubSubJS).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pubsub-js.
declare namespace PubSubJS {
interface Base<T = any, M = Message>
extends
CountSubscriptions,
ClearAllSubscriptions,
GetSubscriptions,
Publish<T, M>,
Subscribe<T, M>,
Unsubscribe<T>
{
name: string;
version: string;
}
type Token = string;
type Message = string | symbol;
type SubscriptionListener<T> = (message: string, data?: T) => void;
interface CountSubscriptions {
countSubscriptions(token: Token): number;
}
interface ClearAllSubscriptions {
clearAllSubscriptions(token?: Token): void;
}
interface GetSubscriptions {
getSubscriptions(token: Token): Message[];
}
interface Publish<T, M> {
publish(message: M, data?: T): boolean;
publishSync(message: M, data?: T): boolean;
}
interface Subscribe<T, M> {
subscribe(message: M, func: SubscriptionListener<T>): Token;
subscribeOnce(message: M, func: SubscriptionListener<T>): Base<T, M>;
}
interface Unsubscribe<T> {
unsubscribe(tokenOrFunction: Token | SubscriptionListener<T>): Token | boolean;
}
}
declare var PubSub: PubSubJS.Base;
declare module "pubsub-js" {
export = PubSub;
}
These definitions were written by Boris Yankov, Matthias Lindinger, and Profesor08.
FAQs
TypeScript definitions for pubsub-js
We found that @types/pubsub-js 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.