atlassian / atlassian/extract-react-types
Add support for prop types which extend other types/interfaces
Open
- Dominant language
- JavaScript
- Stars
- 188
- Forks
- 31
- PR merge metrics
- No merged PRs in 30d
Description
For example
```
interface Foo {
foo: boolean;
}
interface BarProps extends Foo {
bar: string;
}
const BarComponent: FC = (props) => {}
```
Contributor guide
Assessment
This issue has not been assessed yet.