我正在尝试将Typescript用于我的AWS Lambda,并且在我使用promise的地方都遇到以下错误。
错误TS2693:'Promise'仅指一种类型,但在此处被用作值。
我尝试在代码中使用以下变体
使用Promise构造函数
responsePromise = new Promise((resolve, reject) => {
return reject(new Error(`missing is needed data`))
})
使用Promise.reject
responsePromise = Promise.reject(new Error(`Unsupported method "${request.httpMethod}"`));
版本号
以下是我的开发依赖项中的版本:
"typescript": "^2.2.2"
"@types/aws-lambda": "0.0.9",
"@types/core-js": "^0.9.40",
"@types/node": "^7.0.12",
tsconfig.json的内容
{
"compileOnSave": true,
"compilerOptions": {
"module": "commonjs",
// "typeRoots" : ["./typings", "./node_modules/@types"],
"target": "es5",
// "types" : [ "core-js" ],
"noImplicitAny": true,
"strictNullChecks": true,
"allowJs": true,
"noEmit": true,
"alwaysStrict": true,
"preserveConstEnums": true,
"sourceMap": true,
"outDir": "dist",
"moduleResolution": "Node",
"declaration": true,
"lib": [
"es6"
]
},
"include": [
"index.ts",
"lib/**/*.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
我正在使用具有以下配置的grunt-ts运行ts任务。
ts: {
app: {
tsconfig: {
tsconfig: "./tsconfig.json",
ignoreSettings: true
}
},
...
我尝试使用得到的解决方案:[ts]'Promise'仅指类型,但在这里被用作值,但没有运气。
responsePromise = new Promise((resolve, reject) => { reject(new Error("missing is needed data"))})
我尝试过这个。但这并没有解决问题。
responsePromise
声明了什么?
return
。