Created
April 6, 2021 18:37
-
-
Save washingtonsoares/7c4eb31254b22c0fb4c6e6ed1d15cd9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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