Skip to content

Commit

Permalink
FMT
Browse files Browse the repository at this point in the history
  • Loading branch information
hhugo committed Feb 29, 2024
1 parent 6a69eb6 commit 586c81b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 24 deletions.
23 changes: 11 additions & 12 deletions lib/js_of_ocaml/dom_html.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1293,26 +1293,25 @@ class type dListElement = element

class type liElement = element

class type dialogElement =
object
inherit element
class type dialogElement = object
inherit element

method close : unit meth
method close : unit meth

method close_returnValue : js_string t -> unit meth
method close_returnValue : js_string t -> unit meth

method open_ : bool t prop
method open_ : bool t prop

method returnValue : js_string t prop
method returnValue : js_string t prop

method show : unit meth
method show : unit meth

method showModal : unit meth
method showModal : unit meth

method oncancel : ('self t, event t) event_listener prop
method oncancel : ('self t, event t) event_listener prop

method onclose : ('self t, event t) event_listener prop
end
method onclose : ('self t, event t) event_listener prop
end

class type divElement = element

Expand Down
23 changes: 11 additions & 12 deletions lib/js_of_ocaml/dom_html.mli
Original file line number Diff line number Diff line change
Expand Up @@ -1114,26 +1114,25 @@ class type dListElement = element

class type liElement = element

class type dialogElement =
object
inherit element
class type dialogElement = object
inherit element

method close : unit meth
method close : unit meth

method close_returnValue : js_string t -> unit meth
method close_returnValue : js_string t -> unit meth

method open_ : bool t prop
method open_ : bool t prop

method returnValue : js_string t prop
method returnValue : js_string t prop

method show : unit meth
method show : unit meth

method showModal : unit meth
method showModal : unit meth

method oncancel : ('self t, event t) event_listener prop
method oncancel : ('self t, event t) event_listener prop

method onclose : ('self t, event t) event_listener prop
end
method onclose : ('self t, event t) event_listener prop
end

class type divElement = element

Expand Down

0 comments on commit 586c81b

Please sign in to comment.