Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@types/canvas-size
Advanced tools
TypeScript definitions for canvas-size
npm install --save @types/canvas-size
This package contains type definitions for canvas-size (https://github.com/jhildenbiddle/canvas-size).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/canvas-size.
interface CanvasSizeCommonOptions {
useWorker?: boolean;
usePromise?: boolean;
onError?: (width: number, height: number, benchmark: number) => any;
onSuccess?: (width: number, height: number, benchmark: number) => any;
}
interface CanvasSizeTestOptions extends CanvasSizeCommonOptions {
width?: number;
height?: number;
sizes?: Array<[number, number]>;
}
interface CanvasSizeMaxOptions extends CanvasSizeCommonOptions {
max?: number;
min?: number;
step?: number;
}
interface CanvasSizeMaxReturn {
width: number;
height: number;
benchmark: number;
}
interface CanvasSize {
test(options: CanvasSizeTestOptions): boolean;
maxArea(options: CanvasSizeMaxOptions & { usePromise?: false }): void;
maxArea(options: CanvasSizeMaxOptions & { usePromise: true }): Promise<CanvasSizeMaxReturn>;
maxWidth(options: CanvasSizeMaxOptions & { usePromise?: false }): void;
maxWidth(options: CanvasSizeMaxOptions & { usePromise: true }): Promise<CanvasSizeMaxReturn>;
maxHeight(options: CanvasSizeMaxOptions & { usePromise?: false }): void;
maxHeight(options: CanvasSizeMaxOptions & { usePromise: true }): Promise<CanvasSizeMaxReturn>;
}
declare const canvasSize: CanvasSize;
export as namespace canvasSize;
export = canvasSize;
These definitions were written by Daniel Kucal.
FAQs
TypeScript definitions for canvas-size
We found that @types/canvas-size 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.