故障排除手册:全局变量、图片和其他非 TS 文件
使用声明合并。
例如,如果您正在使用附加到 window
全局变量的第三方 JS 脚本,您可以扩展 Window
declare global {
interface Window {
MyVendorThing: MyVendorType;
}
}
同样,如果您希望“导入”图片或其他非 TS/TSX 文件
// declaration.d.ts
// anywhere in your project, NOT the same name as any of your .ts/tsx files
declare module "*.png";
// importing in a tsx file
import * as logo from "./logo.png";
请注意,tsc
无法为您捆绑这些文件,您必须使用 Webpack 或 Parcel。
相关问题:https://github.com/Microsoft/TypeScript-React-Starter/issues/12 和 StackOverflow