Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@types/undertaker-registry
Advanced tools
TypeScript definitions for undertaker-registry
npm install --save @types/undertaker-registry
This package contains type definitions for undertaker-registry (https://github.com/gulpjs/undertaker-registry).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/undertaker-registry.
declare class UndertakerRegistry {
/**
* Returns the task with that name or undefined if no task is registered with that name.
* Useful for custom task storage.
* Custom registries can override this method when inheriting from this default registry.
* @param taskName - Name of task.
*/
get<TTaskFunction>(taskName: string): TTaskFunction;
/**
* No-op method that receives the undertaker instance.
* Useful to set pre-defined tasks using the undertaker.task(taskName, fn) method.
* Custom registries can override this method when inheriting from this default registry.
* @param taker - Instance of undertaker.
*/
init(taker: any): void;
/**
* Adds a task to the registry.
* If set modifies a task, it should return the new task so Undertaker can properly maintain metadata for the task.
* Useful for adding custom behavior to every task as it is registered in the system.
* Custom registries can override this method when inheriting from this default registry.
* @param taskName - Name of task.
* @param fn - Task function.
*/
set<TTaskFunction>(taskName: string, fn: TTaskFunction): TTaskFunction;
/**
* Returns an object listing all tasks in the registry.
* Necessary to override if the get method is overridden for custom task storage.
* Custom registries can override this when when inheriting from this default registry.
*/
tasks(): { [taskName: string]: (...args: any[]) => any };
}
declare namespace UndertakerRegistry {}
export = UndertakerRegistry;
These definitions were written by Giedrius Grabauskas.
FAQs
TypeScript definitions for undertaker-registry
The npm package @types/undertaker-registry receives a total of 212,043 weekly downloads. As such, @types/undertaker-registry popularity was classified as popular.
We found that @types/undertaker-registry 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.