microsoft / microsoft/TypeScript
Template literal type derived from string is not a subtype of the TLT derived from any
Nessuno ha ancora preso questa issue.
- Lingua principale
- Go
- Stelle
- 111k
- Fork
- 14.4k
- Merge medio
- 1g 19h
- PR unite (30g)
- 117
Descrizione
🔎 Search Terms
"template literal type", "any", "string", "mutually assignable types"
🕗 Version & Regression Information
- This changed between versions 4.1.5 and 4.2.3
- This changed in commit or PR 411c6d04c6007cd3bb74ef0ce6cc11e8c699a2b5 (reported by every-ts)
⏯ Playground Link
💻 Code
type Good1 = `${number}` extends `${any}` ? true : false; // true
type Good2 = `${bigint}` extends `${any}` ? true : false; // true
type Good3 = `${boolean}` extends `${any}` ? true : false; // true
type Good4 = `${null}` extends `${any}` ? true : false; // true
type Good5 = `${undefined}` extends `${any}` ? true : false; // true
type Bad1 = `${string}` extends `${any}` ? true : false; // true in 4.1.5, false in 4.2.3
type Bad2 = `${string | number | bigint | boolean | null | undefined}` extends `${any}` ? true : false; // true in 4.1.5, false in 4.2.3
const ok: `${any}` = '1' as `${number}`;
// Ok in 4.1.5, complains in 4.2.3
const issue: `${any}` = '1' as `${string}`;
🙁 Actual behavior
Type 'string' is not assignable to type '${any}'.(2322)
🙂 Expected behavior
Should compile with no errors, since `${any}` and string should be the same type (or at least mutually assignable).
Additional information about the issue
Proposed solution: simplify the type `${any}` to string like it is done with the `${string}` type.
Rationale: for any type X that is either concrete or generic (with a restriction to valid arguments of a template literal type) the type `${string|X}` simplifies to string. Therefore, if TypeScript strives to any consistency, we would expect `${string|any}` (i.e. `${any}`) to also simplify to string.
I have no idea why we currently have `${any}` extends `${number}` true (which could break with my suggestion if no other changes are made), but this bug report is not concerted with this. I'm leaving this up to the maintainers.
Proposed solution 2: Just make string extends `${any}` and `${any}` extends string true.
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia con la riproduzione collegata di TypeScript Playground e confronta il comportamento tra le versioni 4.1.5 e 4.2.3. Poi esamina il commit 411c6d04c6007cd3bb74ef0ce6cc11e8c699a2b5 e i percorsi del type checker dei template literal type che ha modificato. Il lavoro è completato quando i casi di assegnabilità ${string} e ${any} vengono compilati in modo coerente con il comportamento previsto.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- typescript
- Ambito
- compilers
- Tipo di issue
- Bug
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Stato di attività
- Ferma
- Chiarezza
- Da chiarire
- Idoneità per principianti
- 25/100