microsoft / microsoft/TypeScript
Support for type destructuring
未关闭
还没有人认领这个 Issue。
In Discussion
Suggestion
- 主要语言
- Go
- 星标
- 111k
- 派生
- 14.3k
- 平均合并
- 2 天 4 小时
- 30 天内合并 PR
- 132
描述
TypeScript Version: 2.1.4
Code
import { MyNamespace } from 'my-package';
// importing Class objects:
const { NavLink, NavGroup } = MyNamespace; // VALID
// if we want the types as well:
type { NavLink, NavGroup } = MyNamespace; // NOT VALID
// So we have to go manual:
type NavLink = MyNamespace.NavLink; // VALID
type NavGroup = MyNamespace.NavLink; // VALID
Expected behavior:
Being able to use destructuring for types same as we use for objects.
Actual behavior:
Can only use destructuring for objects.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
该 issue 没有提供可供开始的 repository 文件、测试或入口点。先复现 TypeScript 2.1.4 示例,然后跟踪 object destructuring 和 type aliases 的解析与检查方式。当 type destructuring 能够在所示的 namespace 示例中正常工作,具备适当的 compiler 覆盖,并且不会导致 object destructuring 回归时,即视为完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- typescript
- 领域
- compilers
- Issue 类型
- 功能
- 难度
- 5/5
- 预计耗时
- 一周以上
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100