typescript 学习笔记

typescript 学习笔记

申明全局类型,不用import导入,可以直接使用

  1. 项目更目录下创建typings目录

  2. typings中添加 index.d.ts, 在其中定义需要的类型

    interface MyType {
      foo: string,
      bar: string[]
    }
    
  3. 修改 tsconfig.json,添加字段 typeRoots

    {
      "compilerOptions": {
        "typeRoots": ["./node_modules/@types/", "./typings"],
      }
    }
    
上一篇:你应该知道的TypeScript基础知识


下一篇:TypeScript学习(九)interface 和 type 到底有什么区别?