Skip to content

Commit

Permalink
chore: add changelog for #1147
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro committed Aug 11, 2024
1 parent 76faea7 commit 13520fb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Unreleased
([#1137](https://github.com/melange-re/melange/pull/1137))
- support `[@mel.*]` attributes in uncurried externals
([#1140](https://github.com/melange-re/melange/pull/1140))
- add Worker types to `melange.dom`
([#1147](https://github.com/melange-re/melange/pull/1147))

4.0.1 2024-06-07
---------------
Expand Down
16 changes: 12 additions & 4 deletions jscomp/others/dom.ml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,21 @@ type serviceWorker = _serviceWorker eventTarget_like
type _worker
type worker = _worker eventTarget_like
type 'a _workerGlobalScope
type workerGlobalScope = _baseClass 'a _workerGlobalScope eventTarget_like
type workerGlobalScope = _baseClass _workerGlobalScope eventTarget_like
type _dedicatedWorkerGlobalScope
type dedicatedWorkerGlobalScope = _dedicatedWorkerGlobalScope 'a _workerGlobalScope eventTarget_like

type dedicatedWorkerGlobalScope =
_dedicatedWorkerGlobalScope _workerGlobalScope eventTarget_like

type _serviceWorkerGlobalScope
type serviceWorkerGlobalScope = _serviceWorkerGlobalScope 'a _workerGlobalScope eventTarget_like

type serviceWorkerGlobalScope =
_serviceWorkerGlobalScope _workerGlobalScope eventTarget_like

type _sharedWorkerGlobalScope
type sharedWorkerGlobalScope = _sharedWorkerGlobalScope 'a _workerGlobalScope eventTarget_like

type sharedWorkerGlobalScope =
_sharedWorkerGlobalScope _workerGlobalScope eventTarget_like

(* nodes *)
type 'a _node
Expand Down

0 comments on commit 13520fb

Please sign in to comment.