Socket
Socket
Sign inDemoInstall

@types/simple-react-clipboard

Package Overview
Dependencies
3
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/simple-react-clipboard

TypeScript definitions for simple-react-clipboard


Version published
Weekly downloads
91
decreased by-70.65%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Installation

npm install --save @types/simple-react-clipboard

Summary

This package contains type definitions for simple-react-clipboard (https://github.com/donfour/simple-react-clipboard#readme).

Details

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

index.d.ts

import { JSX, ReactNode } from "react";

interface ClipboardProps {
    render: (arg0: { copy: () => void }) => ReactNode;
    text: string;
    props?: object | undefined;
    // eslint-disable-next-line @typescript-eslint/no-invalid-void-type
    onSuccess?: () => void | undefined;
    // eslint-disable-next-line @typescript-eslint/no-invalid-void-type
    onError?: () => void | undefined;
}

declare function Clipboard({
    render,
    text,
    props,
    onSuccess,
    onError,
}: ClipboardProps): JSX.Element;

export default Clipboard;

Additional Details

  • Last updated: Fri, 15 Dec 2023 19:06:42 GMT
  • Dependencies: @types/react

Credits

These definitions were written by Huy Tran.

FAQs

Last updated on 15 Dec 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc