我想把reactstrap和typescript一起使用。Reactstrap可作为Reactstrap全局变量在页面上使用。type Reactstrap = typeof reactstrap
} 我可以不用导入就可以使用React.Component和jsx,它在全球范围内都可用。但是我不能使用Reactstrap.Alert,tsc说Reactstrap.Alert是一个类型,但它被当做一个值来使用。我可以在d.ts文件中手动添加这个字符串export as n
我使用了这个概念,并且成功地导入了没有大括号的模块,比如:import Jumbotron from 'reactstrap';,它运行得很好。/React Coursera/Header.js 5:71-77 export default (imported as Jumbotron) was not found in reactstrap。