microsoft / microsoft/TypeScript
Mapped type of a conditional type unexpectedly fails inference
まだ誰も着手していません。
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.4k
- 平均マージ
- 1日 19時間
- マージ済み PR(30日)
- 117
説明
🔎 Search Terms
conditional type infer unknown
conditional type mapped type inference
🕗 Version & Regression Information
This is the behavior in every version I tried (3.3.3 to 5.5.3), and I reviewed the FAQ for entries about conditional types, mapped types, and structural inference.
⏯ Playground Link
💻 Code
type Mapped<T> = { [P in keyof T]: T[P] }
type ComponentA = Mapped<{ field: number }>
type ComponentB = { field: number }
type Infer1<T> = Mapped<T extends never ? null : T>
declare function infer1<T>(c: Infer1<T>): T
infer1({} as ComponentA).field = 1 // ✅
infer1({} as ComponentB).field = 1 // ❌ Error: Object is of type 'unknown'
type Infer2<T> = T extends never ? null : Mapped<T>
declare function infer2<T>(c: Infer2<T>): T
infer2({} as ComponentA).field = 1 // ✅
infer2({} as ComponentB).field = 1 // ✅
🙁 Actual behavior
infer1(ComponentA) passed inference but infer1(ComponentB) failed with unknown.
However, if it's the other way around — Conditional ? Mapped<T> instead of Mapped<Conditional ? T>, both infer2(ComponentA) and infer2(ComponentB) passed inference.
🙂 Expected behavior
I expect infer1(ComponentA) and infer1(ComponentB) to both work, because ComponentA and ComponentB are essentially the same type — I'm unable to otherwise differentiate them by any means.
Additional information about the issue
I discovered this while debugging vuejs/core#11353, and the interference failure there was eventually reduced to this report.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
リンクされている TypeScript Playground と縮小版の infer1/infer2 の例から始め、その後、2 つの conditional type と mapped type の配置で ComponentA と ComponentB に対して T がどのように推論されるかを比較します。infer1 が unknown を生成せずに、同等の 2 つのコンポーネント形状を両方とも受け入れ、その動作が適切な回帰テストでカバーされていれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- typescript
- 領域
- compilers
- issue の種類
- バグ
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- 明確に書かれている
- 初心者へのやさしさ
- 35/100