Skip to content

Commit

Permalink
add WorkerGlobalScopes
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyfettes committed Aug 5, 2024
1 parent e519d20 commit 4eff298
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions jscomp/others/dom.ml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ type _serviceWorker
type serviceWorker = _serviceWorker eventTarget_like
type _worker
type worker = _worker eventTarget_like
type 'a _workerGlobalScope
type 'a workerGlobalScope_like = 'a _workerGlobalScope eventTarget_like
type workerGlobalScope = _baseClass workerGlobalScope_like
type _dedicatedWorkerGlobalScope
type dedicatedWorkerGlobalScope = _dedicatedWorkerGlobalScope workerGlobalScope_like
type _serviceWorkerGlobalScope
type serviceWorkerGlobalScope = _serviceWorkerGlobalScope workerGlobalScope_like
type _sharedWorkerGlobalScope
type sharedWorkerGlobalScope = _sharedWorkerGlobalScope workerGlobalScope_like

(* nodes *)
type 'a _node
Expand Down

0 comments on commit 4eff298

Please sign in to comment.