module Web.HTML.Event.EventTypes where

import Web.Event.Event (EventType (..))

abort :: EventType
abort :: EventType
abort = Text -> EventType
EventType Text
"abort"

afterprint :: EventType
afterprint :: EventType
afterprint = Text -> EventType
EventType Text
"afterprint"

afterscriptexecute :: EventType
afterscriptexecute :: EventType
afterscriptexecute = Text -> EventType
EventType Text
"afterscriptexecute"

beforeprint :: EventType
beforeprint :: EventType
beforeprint = Text -> EventType
EventType Text
"beforeprint"

beforescriptexecute :: EventType
beforescriptexecute :: EventType
beforescriptexecute = Text -> EventType
EventType Text
"beforescriptexecute"

blur :: EventType
blur :: EventType
blur = Text -> EventType
EventType Text
"blur"

cancel :: EventType
cancel :: EventType
cancel = Text -> EventType
EventType Text
"cancel"

change :: EventType
change :: EventType
change = Text -> EventType
EventType Text
"change"

click :: EventType
click :: EventType
click = Text -> EventType
EventType Text
"click"

close :: EventType
close :: EventType
close = Text -> EventType
EventType Text
"close"

copy :: EventType
copy :: EventType
copy = Text -> EventType
EventType Text
"copy"

cut :: EventType
cut :: EventType
cut = Text -> EventType
EventType Text
"cut"

domcontentloaded :: EventType
domcontentloaded :: EventType
domcontentloaded = Text -> EventType
EventType Text
"DOMContentLoaded"

error :: EventType
error :: EventType
error = Text -> EventType
EventType Text
"error"

focus :: EventType
focus :: EventType
focus = Text -> EventType
EventType Text
"focus"

input :: EventType
input :: EventType
input = Text -> EventType
EventType Text
"input"

invalid :: EventType
invalid :: EventType
invalid = Text -> EventType
EventType Text
"invalid"

languagechange :: EventType
languagechange :: EventType
languagechange = Text -> EventType
EventType Text
"languagechange"

load :: EventType
load :: EventType
load = Text -> EventType
EventType Text
"load"

loadend :: EventType
loadend :: EventType
loadend = Text -> EventType
EventType Text
"loadend"

loadstart :: EventType
loadstart :: EventType
loadstart = Text -> EventType
EventType Text
"loadstart"

message :: EventType
message :: EventType
message = Text -> EventType
EventType Text
"message"

offline :: EventType
offline :: EventType
offline = Text -> EventType
EventType Text
"offline"

online :: EventType
online :: EventType
online = Text -> EventType
EventType Text
"online"

paste :: EventType
paste :: EventType
paste = Text -> EventType
EventType Text
"paste"

progress :: EventType
progress :: EventType
progress = Text -> EventType
EventType Text
"progress"

readystatechange :: EventType
readystatechange :: EventType
readystatechange = Text -> EventType
EventType Text
"readystatechange"

reset :: EventType
reset :: EventType
reset = Text -> EventType
EventType Text
"reset"

select :: EventType
select :: EventType
select = Text -> EventType
EventType Text
"select"

storage :: EventType
storage :: EventType
storage = Text -> EventType
EventType Text
"storage"

submit :: EventType
submit :: EventType
submit = Text -> EventType
EventType Text
"submit"

toggle :: EventType
toggle :: EventType
toggle = Text -> EventType
EventType Text
"toggle"

unload :: EventType
unload :: EventType
unload = Text -> EventType
EventType Text
"unload"