Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 579 Bytes

NodeList.md

File metadata and controls

28 lines (19 loc) · 579 Bytes

Module Data.DOM.Simple.NodeList

NodeListInst

class NodeListInst b where
  length :: forall eff. b -> Eff (dom :: DOM | eff) Int
  item :: forall eff. Int -> b -> Eff (dom :: DOM | eff) (Maybe HTMLElement)
Instances
instance nodeList :: NodeListInst NodeList

nodeListToArray

nodeListToArray :: forall eff. NodeList -> Eff (dom :: DOM | eff) (Array HTMLElement)

nodeListToArray'

nodeListToArray' :: forall eff. NodeList -> Eff (dom :: DOM | eff) (Array HTMLElement)