Module Data.DOM.Simple.Window
class Location b where
getLocation :: forall eff . b -> Eff (dom :: DOM | eff ) String
setLocation :: forall eff . String -> b -> Eff (dom :: DOM | eff ) Unit
search :: forall eff . b -> Eff (dom :: DOM | eff ) String
instance domLocation :: Location DOMLocation
class Window b where
document :: forall eff . b -> Eff (dom :: DOM | eff ) HTMLDocument
navigator :: forall eff . b -> Eff (dom :: DOM | eff ) DOMNavigator
location :: forall eff . b -> Eff (dom :: DOM | eff ) DOMLocation
setTimeout :: forall eff . b -> Number -> Eff (dom :: DOM | eff ) Unit -> Eff (dom :: DOM | eff ) Timeout
setInterval :: forall eff . b -> Number -> Eff (dom :: DOM | eff ) Unit -> Eff (dom :: DOM | eff ) Timeout
clearTimeout :: forall eff . b -> Timeout -> Eff (dom :: DOM | eff ) Unit
innerWidth :: forall eff . b -> Eff (dom :: DOM | eff ) Number
innerHeight :: forall eff . b -> Eff (dom :: DOM | eff ) Number
instance htmlWindow :: Window HTMLWindow
globalWindow :: HTMLWindow
getLocationValue :: String -> String -> Maybe String