BugDomain: lib.d.tsHelp Wanted
倉庫指標
- 星標
- (108,860 顆星)
- PR 合併指標
- (PR 指標待抓取)
描述
Bug Report
🔎 Search Terms
WebCrypto, CryptoKeyPair
🕗 Version & Regression Information
- This changed between versions 4.3 and 4.4
Description
Here is W3C spec for CryptoKeyPair dictionary.
In TS v4.4.3 type declaration for CryptoKeyPair is:
interface CryptoKeyPair {
privateKey?: CryptoKey;
publicKey?: CryptoKey;
}
In TS v.4.3.5:
interface CryptoKeyPair {
privateKey: CryptoKey;
publicKey: CryptoKey;
}