microsoft / microsoft/TypeScript
Preserve interfaces in generated declaration files for augmentation
@weswigham arbeitet bereits daran.
Seit 18.2.2021.
- Vorherrschende Sprache
- Go
- Sterne
- 111k
- Forks
- 14.3k
- Ø Merge
- 1 T. 19 Std.
- Gemergte PRs (30 T.)
- 117
Beschreibung
Suggestion
2023 Updat
We investigated this, and turns out its easy to workaround, just extract function's type into standalone type declaration. So its low priority for us now.
🔍 Search Terms
Stop emitting never for empty interfaces from declaration
✅ Viability Checklist
My suggestion meets these guidelines:
- 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.)
- [ X This feature would agree with the rest of TypeScript's Design Goals.
⭐ Suggestion
Make TypeScript compiler preserve references to original Interfaces. (or at very least add an option for this!)
📃 Motivating Example
export interface InterfaceToAugment {
}
export default <T extends keyof InterfaceToAugment>(key: T, value: InterfaceToAugment[T]) => { };
After we run tsc (with declaration: true of course) we'll see our .d.ts file:
export interface InterfaceToAugment {
}
declare const _default: <T extends never>(key: T, value: InterfaceToAugment[T]) => void;
export default _default;
As you can see here, declaration file making this interface absolutely useless., but I wanted to make this function to pick real keys of this interface.
Is there any workaround for this?
💻 Use Cases
Module Augmentation for library consumer
declare module "this-lib" {
interface InterfaceToAugment {
myCustomKey: 5
}
}
Please, correct me if I missed something
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Bewertung
Dieses Issue wurde noch nicht bewertet.