TypeScript – Type Declarations

前言

虽然很少用到了,但有时候遇到又要找. 干脆记入在这里吧.

 

Import JPG, SVG

要 import .svg, .jpg 的话, 需要定义 type declaration.

参考: Unable to import svg files in typescript

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

 

上一篇:【历史上的今天】2 月 11 日:首款 Ubuntu 手机问世;苹果的天使投资人诞生;电子工业联盟正式停运


下一篇:TypeScript 中文教程之缩小----部分翻译自TS官方