microsoft / microsoft/TypeScript
type gets widened on declaration emit when inferred in destructuring context
オープン
まだ誰も着手していません。
Bug
Domain: Declaration Emit
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.4k
- 平均マージ
- 1日 19時間
- マージ済み PR(30日)
- 117
説明
🔎 Search Terms
declaration, widened, d.ts, destructuring
🕗 Version & Regression Information
- This is the behavior in every version I tried, and I reviewed the FAQ for entries
⏯ Playground Link
💻 Code
function foo(): {y: 1} {
return { y: 1 }
}
export const { y = 0 } = foo();
🙁 Actual behavior
y is number in d.ts files, although the language service says y is 1|0
🙂 Expected behavior
y is 1|0 in d.ts files.
Additional information about the issue
Without the = 0 assignment y properly becomes type 1 in d.ts
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
リンク先の TypeScript Playground と提供された destructuring の例を使用して、declaration emit を再現してください。y に対して生成された d.ts 型を language service の結果と比較し、デフォルト代入が存在する場合でも出力される型が 1|0 のままであり、デフォルトなしの場合は 1 のままであることを確認してください。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- typescript
- 領域
- compilers
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100