typewiz:在TypeScript代码中自动发现并添加缺少的类型 源码
TypeWiz 在TypeScript代码中自动发现并添加缺少的类型。 介绍 TypeWiz在运行时监视变量类型,并使用此信息将缺失的类型注释添加到TypeScript代码中。 例如,给定以下源代码作为输入: function add ( a , b ) { return a + b ; } add ( 5 , 6 ) ; TypeWiz将自动检测a和b的类型为number ,并将重写为以下代码: function add ( a : number , b : number ) { return a + b ; } add ( 5 , 6 ) ; 您可以在博客文章中了
文件列表
typewiz-master.zip
(预估有个69文件)
typewiz-master
.gitignore
57B
tsconfig.json
540B
README.md
4KB
lerna.json
133B
packages
typewiz-webpack
tsconfig.json
156B
README.md
3KB
package.json
758B
暂无评论