在最新版本的VS中添加TypeScript支持很容易--只需添加一个TypeScript文件,VS将自动重新配置项目。但是,当所有TS文件都消失时,它会发出以下警告:
Warning: The TypeScript Compiler was given no files for compilation, so it will可以通过在记事本中编辑项目文件来手动删除TypeScript支持,但是在VS中有一个图形用户界面来处理这个问题吗?
interface Base { a: number b: number; c: numberinterface AC extends A, C, Base {}interface ABC extends A, B, C, Base {}
Base可以选择性地扩展任何接口。我想知道make Extended interfa