1
我剛剛升級的反應,引導分型和我得到的錯誤:陣營,引導肯定是類型的:錯誤TS2309:一個出口分配不能在模塊中使用與其他出口元素
Error TS2309: An export assignment cannot be used in a module with other exported elements.
上此行:
declare namespace ReactBootstrap {
// Import React
import React = __React;
//definitions omitted
}
declare module "react-bootstrap" {
export = ReactBootstrap; //Error TS2309: An export assignment cannot be used in a module with other exported elements.
}
定義文件錯了還是我做錯了什麼?