Skip to content

Instantly share code, notes, and snippets.

@washingtonsoares
Created April 6, 2021 18:37
Show Gist options
  • Save washingtonsoares/7c4eb31254b22c0fb4c6e6ed1d15cd9d to your computer and use it in GitHub Desktop.
Save washingtonsoares/7c4eb31254b22c0fb4c6e6ed1d15cd9d to your computer and use it in GitHub Desktop.
declare module 'react-rating-stars-component' {
import * as React from 'react'
interface StarRatingComponentProps {
onChange: (rating: number) => void;
}
declare class StarRatingComponent extends React.Component<
StarRatingComponentProps
> { }
export default StarRatingComponent
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment