microsoft / microsoft/TypeScript
Declaration merging in plain JS with JSDoc
Open
Nobody has claimed this yet.
Awaiting More Feedback
Suggestion
- Dominant language
- Go
- Stars
- 111k
- Forks
- 14.4k
- Avg merge
- 1d 19h
- Merged PRs (30d)
- 117
Description
🔍 Search Terms
jsdoc declaration merging
✅ Viability Checklist
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, new syntax sugar for JS, etc.)
- This isn't a request to add a new utility type: https://github.com/microsoft/TypeScript/wiki/No-New-Utility-Types
- This feature would agree with the rest of our Design Goals: https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals
⭐ Suggestion
Ability to merge declarations.
📃 Motivating Example
For example, this is a declaration merge in TS:
export const Foo = makeFooClass()
export type Foo = InstanceType<typeof Foo>
In JS we can't do this. I was hoping for something similar to this to achieve the same:
export const Foo = makeFooClass() // returns a class
/** @export {InstanceType<typeof Foo>} Foo */
💻 Use Cases
- What do you want to use this for? To merge declarations in certain cases.
- What shortcomings exist with current approaches? There's no way to do it AFAICT
- What workarounds are you using in the meantime? None
Contributor guide
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 with the motivating TypeScript and plain JavaScript examples in the issue, then read the discussion to understand the proposed declaration-merging behavior and existing limitations. Done means agreeing on a viable JSDoc design and implementing declaration merging without changing emitted JavaScript or existing runtime behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, typescript
- Domain
- compilers
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 25/100