
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
@types/safe-timers
Advanced tools
npm install --save @types/safe-timers
This package contains type definitions for safe-timers (https://github.com/Wizcorp/safe-timers#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/safe-timers.
export const maxInterval: number;
export class Timeout {
/**
* Cancels timeout.
*/
clear(): void;
}
/**
* Creates and returns a `Timeout` instance that will call `callback` after at least `interval` milliseconds have passed.
* All arguments passed after the `interval` will be passed to the `callback` once it gets invoked.
*/
export function setTimeout<T extends any[]>(callback: (...args: T) => void, interval: number, ...args: T): Timeout;
/**
* Creates and returns a `Timeout` instance that will call `callback` when our clock reaches the given `timestamp` (in milliseconds).
* All arguments passed after the `timestamp` will be passed to the `callback` once it gets invoked.
*/
export function setTimeoutAt<T extends any[]>(callback: (...args: T) => void, timestamp: number, ...args: T): Timeout;
/**
* Cancels `timeout`.
*/
export function clearTimeout(timeout: Timeout): void;
export class Interval {
/**
* Cancels interval.
*/
clear(): void;
}
/**
* Creates and returns an `Interval` instance that will call `callback` after at least every `interval` milliseconds.
* All arguments passed after the `interval` will be passed to the `callback` when it gets invoked.
*/
export function setInterval<T extends any[]>(callback: (...args: T) => void, interval: number, ...args: T): Interval;
/**
* Cancels `interval`.
*/
export function clearInterval(interval: Interval): void;
These definitions were written by Kamil Socha.
FAQs
TypeScript definitions for safe-timers
The npm package @types/safe-timers receives a total of 4,603 weekly downloads. As such, @types/safe-timers popularity was classified as popular.
We found that @types/safe-timers 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.