我安装了this types。 该文件看起来像this。
但是这些类型不包括一些非常有用的类型,例如 ClientState 。我想将此枚举添加到该类型中:
enum ClientState {
DISCONNECTED,
CONNECTING,
CONNECTED,
LOGGING_IN,
LOGGED_IN,
}
我想将此枚举添加到命名空间VoxImplant 我该怎么做? 我的tsconfig:
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./build_ts",
"allowJs": true,
"target": "es5",
"sourceMap": false,
"noImplicitAny": true,
"module": "es2015",
"moduleResolution": "node",
"jsx": "react",
"allowSyntheticDefaultImports": true,
"lib": [
"dom",
"es2016"
],
"paths":{
"*": [
"*",
"./types/*"
]
},
"typeRoots": [
"./types",
"./node_modules/@types"
]
},
"include": [
"./app/**/*"
]
}