📌  相关文章
📜  找不到模块 '.. .. images home.svg' 或其对应的类型声明 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:15.193000             🧑  作者: Mango

代码示例2
// custom.d.ts on root /

declare module '*.svg?inline' {
  const content: any
  export default content
}

declare module '*.svg' {
  const content: any
  export default content
}