typescript 学习笔记
申明全局类型,不用import
导入,可以直接使用
-
项目更目录下创建
typings
目录 -
在
typings
中添加index.d.ts
, 在其中定义需要的类型interface MyType { foo: string, bar: string[] }
-
修改
tsconfig.json
,添加字段typeRoots
{ "compilerOptions": { "typeRoots": ["./node_modules/@types/", "./typings"], } }