mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(ext/crypto): align the return type of crypto.randomUUID
to cli/tsc/dts/lib.dom.d.ts
(#22465)
This commit is contained in:
parent
3a43568481
commit
1dad7bec17
1 changed files with 1 additions and 1 deletions
2
ext/crypto/lib.deno_crypto.d.ts
vendored
2
ext/crypto/lib.deno_crypto.d.ts
vendored
|
@ -390,7 +390,7 @@ declare interface Crypto {
|
|||
>(
|
||||
array: T,
|
||||
): T;
|
||||
randomUUID(): string;
|
||||
randomUUID(): `${string}-${string}-${string}-${string}-${string}`;
|
||||
}
|
||||
|
||||
/** @category Web Crypto API */
|
||||
|
|
Loading…
Reference in a new issue