New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@types/react-cropper

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/react-cropper

TypeScript definitions for react-cropper

  • 1.3.3
  • npm
  • Socket score

Version published
Weekly downloads
11K
increased by1.9%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/react-cropper

Summary

This package contains type definitions for react-cropper (https://github.com/roadmanfong/react-cropper).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-cropper.

index.d.ts

// Type definitions for react-cropper 1.3
// Project: https://github.com/roadmanfong/react-cropper, http://roadmanfong.github.io/react-cropper
// Definitions by: Walter Barbagallo <https://github.com/bwlt>
//                 Harald Friessnegger <https://github.com/frisi>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// Minimum TypeScript Version: 3.7

import Cropper from "cropperjs";
import * as React from "react";

type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;

interface ReactCropperProps extends Cropper.Options, Omit<React.HTMLProps<HTMLImageElement>, "data" | "ref"> {
    ref?: React.LegacyRef<ReactCropper> | undefined;
}

interface ReactCropper extends Cropper {} // tslint:disable-line no-empty-interface
declare class ReactCropper extends React.Component<ReactCropperProps> {
    on(eventname: string, callback: () => void): void;
}
export default ReactCropper;

Additional Details

  • Last updated: Wed, 27 Sep 2023 07:12:04 GMT
  • Dependencies: @types/cropperjs, @types/react
  • Global values: none

Credits

These definitions were written by Walter Barbagallo, and Harald Friessnegger.

FAQs

Package last updated on 27 Sep 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc