Handling/documenting merged declarations
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 5k
- Forks
- 162
- Avg merge
- 17h 24m
- Merged PRs (30d)
- 8
Description
Pete and I were discussing ways that TSDoc can handle merged declarations, and wanted to summarize a couple ideas here.
Say you have a scenario where you want to export the same API with a different name. You could have something like
export { X as Y } from '...'
where Y is an enum. For certain reasons, we are considering splitting it up into something like the following instead:
export enum Y {
...
}
export type X = Y;
export const X = Y;
We likely still want both X's to be documented together. We have two tags in mind to solve this: @documentAs and @partOf.
@documentAs would be used to tell the documentation system how to present this API, for example grouping it under the "Enums" section even though it isn't technically an enum.
@partOf would be used to group the second definition with the first.
Using the example above, we might have something like the following:
/**
* Another name for {@link Y}.
* {@documentAs enum}
*/
export type X = Y;
/**
* {@partOf (X:type)}
*/
export const X = Y;
I'm curious to see if anyone else has thought about this much and/or has any other ideas or suggestions.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reviewing the issue text and its discussion about merged declarations, @documentAs, and @partOf; no files, tests, or entry points are named. Done would require an agreed approach for grouping and presenting merged declarations, rather than only the proposed examples.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- documentation
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 20/100