crypto.d.ts 314 B

1234567
  1. declare const crypto: Crypto
  2. declare const CryptoConstructor: typeof Crypto
  3. declare const CryptoKeyConstructor: typeof CryptoKey
  4. declare const SubtleCryptoConstructor: typeof SubtleCrypto
  5. export { CryptoConstructor as Crypto, CryptoKeyConstructor as CryptoKey, SubtleCryptoConstructor as SubtleCrypto, crypto };