npm install --save @types/react-github-button
This package contains type definitions for react-github-button (https://github.com/benjycui/react-github-button#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-github-button.
import { Component } from "react";
declare namespace ReactGitHubButton {
interface ReactReactGitHubButtonProps {
/**
* The type of information to display
*/
type: "stargazers" | "watchers" | "forks";
/**
* Your GitHub id or organization name.
*/
namespace: string;
/**
* The name of your repository.
*/
repo: string;
/**
* The size of the button. Leave undefined for default.
*/
size?: "large" | undefined;
/**
* Optional classname for styling the button.
*/
className?: string | undefined;
}
}
declare class ReactGitHubButton extends Component<ReactGitHubButton.ReactReactGitHubButtonProps> {}
export = ReactGitHubButton;
- Last updated: Fri, 04 Oct 2024 16:42:27 GMT
- Dependencies: @types/react
These definitions were written by Ifiok Jr..