microsoft / microsoft/TypeScript
Removing optional modifier in homomorphic mapped types does not work in generic contexts since 5.5.x
@ahejlsberg arbeitet bereits daran.
Seit 09.9.2024.
- Vorherrschende Sprache
- Go
- Sterne
- 111k
- Forks
- 14.3k
- Ø Merge
- 2 T. 4 Std.
- Gemergte PRs (30 T.)
- 132
Beschreibung
🔎 Search Terms
optional modifier, required fields, generic, NonNullable, strictNullChecks, homomorphic mapped types
🕗 Version & Regression Information
- This changed between versions 5.4.5 and 5.5.2
- This changed in commit or PR e418f8d12c5f1b6c10fc3127764f34dad44d4586 (as reported by
every-ts)
⏯ Playground Link
💻 Code
const example = <T extends string>(): any => {
// Replacing with any specific sub-type of `string` makes the types correct again.
// type T = string;
type SomeOptional = { [key in T]?: 1 };
type AllRequired = { [key in keyof SomeOptional]-?: 1 };
type RequiredValues = AllRequired[keyof AllRequired];
// Complains in 5.4.x, but fine in 5.5.x
const x: RequiredValues = undefined
return x;
};
🙁 Actual behavior
Using -? leaves the fields marked as optional, and taking the values of the resulting type gives a union with undefined.
🙂 Expected behavior
Using -? makes all fields required, and taking the values of the resulting type gives a union of field types.
Additional information about the issue
Requires a --strictNullChecks flag.
Replacing keyof SomeOptional with NonNullable<keyof SomeOptional> or keyof SomeOptional as keyof SomeOptional fixes the issue. It looks like this problem is limited to homomorphic mapped types.
Using Required<{ [P in keyof SomeOptional]: 1; }> in place of { [key in keyof SomeOptional]-?: 1 } results in the same behaviour.
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.