Microsoft/TypeScript

Unable to access ServiceWorkerGlobalScope via `self.`

Open

#14,877 opened on Mar 27, 2017

 (42 comments) (63 reactions) (0 assignees)TypeScript (13,395 forks)batch import
BugDomain: lib.d.tsHelp Wanted

Repository metrics

Stars
 (108,860 stars)
PR merge metrics
 (PR metrics pending)

Description

Since ServiceWorker related types sit in lib.webworker.d.ts, webworker lib need to be added to tsconfig.json.

{
  "compilerOptions": {
    "lib": [
      "es2017",
      "webworker"
    ]
  }
}

But in current lib.webworker.d.ts, it declare var self: WorkerGlobalScope;, so we can't access ServiceWorkerGlobalScope via self.


TypeScript Version: 2.2.1

Expected behavior:

Can access ServiceWorkerGlobalScope via self.(like self.clients)

Actual behavior:

Access with error.

image

Contributor guide