diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-01 20:15:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-01 20:15:28 +0200 |
commit | 6661e7e287aa595eccdc8d49940c40953b1f69bc (patch) | |
tree | 4e936d8aa3ee3acbc7c012072d160a5793401c93 /cli/js/lib.deno.worker.d.ts | |
parent | 5d3c49082ffa96fc97af1e7bf637c930dd9cdf66 (diff) |
BREAKING: remove window.location and self.location (#5034)
This commit removes "location" global available on "window",
"globalThis" and "self".
Diffstat (limited to 'cli/js/lib.deno.worker.d.ts')
-rw-r--r-- | cli/js/lib.deno.worker.d.ts | 1 |
1 files changed, 0 insertions, 1 deletions
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; |