0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-29 08:58:01 -04:00

fix(ext/crypto): Adjust typings for Crypto.getRandomValues() (#15130)

This commit is contained in:
Livia Medeiros 2022-07-12 03:43:57 +08:00 committed by GitHub
parent 88c36fd414
commit b68115db3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -331,9 +331,7 @@ declare interface Crypto {
| Uint32Array
| Uint8ClampedArray
| BigInt64Array
| BigUint64Array
| DataView
| null,
| BigUint64Array,
>(
array: T,
): T;