
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@types/react-avatar-editor
Advanced tools
TypeScript definitions for react-avatar-editor
npm install --save @types/react-avatar-editor
This package contains type definitions for react-avatar-editor (https://github.com/mosch/react-avatar-editor).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-avatar-editor.
// Type definitions for react-avatar-editor 13.0
// Project: https://github.com/mosch/react-avatar-editor
// Definitions by: Diogo Corrêa <https://github.com/diogocorrea>
// Gabriel Prates <https://github.com/gabsprates>
// Laurent Senta <https://github.com/lsenta>
// David Spiess <https://github.com/davidspiess>
// John Grisham <https://github.com/JohnGrisham>
// Joshua Hintze <https://github.com/GimpMaster>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import * as React from "react";
export interface Position {
x: number;
y: number;
}
export interface CroppedRect extends Position {
width: number;
height: number;
}
export interface ImageState extends CroppedRect {
resource: ImageData;
}
export interface AvatarEditorProps {
className?: string | undefined;
image: string | File;
width?: number | undefined;
height?: number | undefined;
backgroundColor?: string | undefined;
border?: number | number[] | undefined;
borderRadius?: number | undefined;
color?: number[] | undefined;
style?: object | undefined;
scale?: number | undefined;
position?: Position | undefined;
rotate?: number | undefined;
crossOrigin?: string | undefined;
disableBoundaryChecks?: boolean | undefined;
disableHiDPIScaling?: boolean | undefined;
disableCanvasRotation?: boolean | undefined;
onLoadFailure?(event: Event): void;
onLoadSuccess?(imgInfo: ImageState): void;
onImageReady?(event: Event): void;
onMouseUp?(): void;
onMouseMove?(event: Event): void;
onImageChange?(): void;
onPositionChange?(position: Position): void;
}
export default class AvatarEditor extends React.Component<AvatarEditorProps, any> {
getImage(): HTMLCanvasElement;
getImageScaledToCanvas(): HTMLCanvasElement;
getCroppingRect(): CroppedRect;
}
These definitions were written by Diogo Corrêa, Gabriel Prates, Laurent Senta, David Spiess, John Grisham, and Joshua Hintze.
FAQs
TypeScript definitions for react-avatar-editor
The npm package @types/react-avatar-editor receives a total of 125,696 weekly downloads. As such, @types/react-avatar-editor popularity was classified as popular.
We found that @types/react-avatar-editor demonstrated a healthy version release cadence and project activity because the last version was released less than 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.