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

📅  最后修改于: 2022-03-11 14:48:30.241000             🧑  作者: 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
}