error
定义重复
函数实现重复
无法重新声明块范围变量“user”。test9_function.ts(75, 5): ‘user’ was also declared here.
reason
原因是同一个文件夹下,其它文件里有同样的变量定义
resolution
在 Typescript 中,只要文件存在 import 或 export 关键字,都被视为 module
在文件最后一行添加:export {}; 即可
定义重复
函数实现重复
无法重新声明块范围变量“user”。test9_function.ts(75, 5): ‘user’ was also declared here.
原因是同一个文件夹下,其它文件里有同样的变量定义
在 Typescript 中,只要文件存在 import 或 export 关键字,都被视为 module
在文件最后一行添加:export {}; 即可