当我在 angular2(打字稿)中使用 aws-sdk 时出现以下错误
import * as AWS from 'aws-sdk';
AWS.config.credentials.get
[ts]
Property 'get' does not exist on type 'Credentials | CredentialsOptions'.
Property 'get' does not exist on type 'CredentialsOptions'.
get 在 CredentialsOptions 上不存在,但在 Credentials 上确实存在。由于这个原因,Typescript 一直让我失望。有什么建议么?它是打字稿中的错误吗?
我正在使用“打字稿”:“~2.3.3”