From 6661e7e287aa595eccdc8d49940c40953b1f69bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 1 May 2020 20:15:28 +0200 Subject: BREAKING: remove window.location and self.location (#5034) This commit removes "location" global available on "window", "globalThis" and "self". --- cli/js/lib.deno.worker.d.ts | 1 - 1 file changed, 1 deletion(-) (limited to 'cli/js/lib.deno.worker.d.ts') diff --git a/cli/js/lib.deno.worker.d.ts b/cli/js/lib.deno.worker.d.ts index bba5f3321..5343646f6 100644 --- a/cli/js/lib.deno.worker.d.ts +++ b/cli/js/lib.deno.worker.d.ts @@ -11,7 +11,6 @@ declare interface DedicatedWorkerGlobalScope { self: DedicatedWorkerGlobalScope & typeof globalThis; onmessage: (e: MessageEvent) => void; onmessageerror: (e: MessageEvent) => void; - location: Location; onerror: undefined | typeof onerror; name: typeof __workerMain.name; close: typeof __workerMain.close; -- cgit v1.2.3