0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 12:16:11 -05: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 cjihrig
parent 0f8bfb53e3
commit 99bf821727
No known key found for this signature in database
GPG key ID: 7434390BDBE9B9C5

View file

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