Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit e54aa31

Browse files
committed
Add some comments
1 parent e241763 commit e54aa31

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/DOM.purs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
module DOM where
22

3-
foreign import data Node :: *
4-
5-
foreign import data NodeList :: *
3+
-- | Effect type for DOM maniupulation
4+
foreign import data DOM :: !
65

7-
foreign import data DOM :: !
6+
-- | General type for DOM nodes.
7+
foreign import data Node :: *
8+
9+
-- | General type for DOM node lists.
10+
foreign import data NodeList :: *

0 commit comments

Comments
 (0)