如何在TypeScript中键入PublicKeyCredential?

时间:2019-01-04 08:35:29

标签: typescript webauthn

我正在使用WebAuthN API,并且想使用error TS2304: Cannot find name 'PublicKeyCredential'.检测身份验证器。但是我的TypeScript不知道这个名字,并且一直告诉我tsconfig.json

我确实导入了“ @ types / webappsec-credential-management”以具有正确的类型。但是出于相同的原因,我的TypeScript不想编译。

您知道如何将其添加到我的import org.apache.spark.sql.functions.lit import org.apache.spark.sql.types.StringType val ds2 = ds.withColumn("new_col", lit(null).cast(StringType)).selectExpr("_c0", "new_col as _c1", "_c2") 或另一种解决方案中以与TypeScript一起正确使用吗?

1 个答案:

答案 0 :(得分:1)

首先,您需要安装该类型。

npm install --save-dev @types/webappsec-credential-management

然后,您需要将类型添加到tsconfig.json文件中。

{
  "compilerOptions": {
    "types": [ "@types/webappsec-credential-management" ]
  }
}