atlassian / atlassian/extract-react-types
Feat: Add ability to hide props from the docs
Open
- Dominant language
- JavaScript
- Stars
- 188
- Forks
- 31
- PR merge metrics
- No merged PRs in 30d
Description
Right now there is no official way to hide props from the docs. Probably we can use something like `@internal` or `@private` to hide them.
```ts
export interface Props {
/** Some description */
id?: string;
/**
* @internal
* Some description
*/
privateId?: string
}
```
Contributor guide
Assessment
This issue has not been assessed yet.