Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@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.
// Type definitions for canvas-size 1.2
// Project: https://github.com/jhildenbiddle/canvas-size
// Definitions by: Daniel Kucal <https://github.com/DanielKucal>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
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;
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.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.