From a08a4abac116eda498f8ad2df13b3816ec36c9ad Mon Sep 17 00:00:00 2001 From: Oliver Lenehan Date: Fri, 8 May 2020 22:30:53 +1000 Subject: feat(workers): "crypto" global accessible in Worker scope (#5121) --- cli/js/lib.deno.shared_globals.d.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'cli/js/lib.deno.shared_globals.d.ts') diff --git a/cli/js/lib.deno.shared_globals.d.ts b/cli/js/lib.deno.shared_globals.d.ts index d96230447..617a75fea 100644 --- a/cli/js/lib.deno.shared_globals.d.ts +++ b/cli/js/lib.deno.shared_globals.d.ts @@ -192,6 +192,7 @@ declare function clearInterval(id?: number): void; declare function queueMicrotask(func: Function): void; declare var console: Console; +declare var crypto: Crypto; declare function addEventListener( type: string, @@ -578,6 +579,26 @@ declare class Console { static [Symbol.hasInstance](instance: Console): boolean; } +declare interface Crypto { + readonly subtle: null; + getRandomValues< + T extends + | Int8Array + | Int16Array + | Int32Array + | Uint8Array + | Uint16Array + | Uint32Array + | Uint8ClampedArray + | Float32Array + | Float64Array + | DataView + | null + >( + array: T + ): T; +} + type FormDataEntryValue = File | string; /** Provides a way to easily construct a set of key/value pairs representing -- cgit v1.2.3