microsoft / microsoft/TypeScript
Inconsistent key type inference when spreading objects with const assertion into plain objects
Personne n'a encore pris cette issue.
- Langage dominant
- Go
- Étoiles
- 111k
- Forks
- 14.4k
- Merge moyen
- 1 j 19 h
- PR mergées (30 j)
- 117
Description
🔎 Search Terms
const assertion, type inference, as const, object keys, type conversion, keyof typeof, satisfies, spread, readonly object
🕗 Version & Regression Information
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about keyof, as const, infererence etc.
⏯ Playground Link
💻 Code
const namesById = {
1: "John Doe",
2: "Jane Smith",
3: "Alex Johnson",
4: "Maria Garcia",
} as const satisfies Record<number, string>;
type Ids = keyof typeof namesById;
// ^? type Ids = 1 | 2 | 3 | 4
const namesByIdCopy = {
...namesById,
} satisfies Record<number, string>;
type IdsCopy = keyof typeof namesByIdCopy;
// ^? type IdsCopy = "1" | "2" | "3" | "4"
🙁 Actual behavior
IdsCopy has converted all of the keys to string literal union instead of a number literal union when using keyof typeof, even despite the fact that we've used satisfies Record<number, string> on the namesByIdCopy object.
🙂 Expected behavior
type IdsCopy = keyof typeof namesByIdCopy;
// ^? type IdsCopy = "1" | "2" | "3" | "4"
should instead be typed as:
type IdsCopy = keyof typeof namesByIdCopy;
// ^? type IdsCopy = 1 | 2 | 3 | 4
Additional information about the issue
The type inference seems to work as expected (i.e. numeric literal union) if as const is used on both the original object and the copy object, or if as const isn't used on the original object. It's only when spreading the object with anas const and inferring the keys using keyof typeof that they get inferred incorrectly.
Guide de contribution
Ouvrir le guide de contribution
Par où commencer
- Lisez l'issue en entier, puis le guide de contribution du projet.
- Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
- Forkez le dépôt et travaillez sur une branche.
- Ouvrez une pull request qui référence le numéro de l'issue.
Piste de recherche
Commencez par le TypeScript Playground lié et comparez les types inférés Ids et IdsCopy dans la reproduction fournie. Suivez l’effet de l’utilisation du spread sur un objet as const sur keyof typeof et sur la contrainte satisfies Record<number, string>. C’est terminé lorsque les clés de l’objet copié conservent l’union de littéraux numériques présentée dans le comportement attendu.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Évaluation
- Stack technique
- typescript
- Domaine
- compilers
- Type d'issue
- Bug
- Difficulté
- 4/5
- Temps estimé
- 3-5 jours
- Activité
- À l'abandon
- Clarté
- Clairement spécifiée
- Accessibilité débutants
- 35/100