diff --git a/src/Cheerio.purs b/src/Cheerio.purs index 4386ddb..6bc56e3 100644 --- a/src/Cheerio.purs +++ b/src/Cheerio.purs @@ -1,4 +1,20 @@ -module Cheerio where +module Cheerio ( + Cheerio, + attr, + children, + eq, + first, + find, + hasClass, + html, + last, + length, + next, + parent, + prev, + siblings, + text + ) where import Data.Function.Uncurried (Fn2, Fn3, Fn4, runFn2, runFn3, runFn4) import Data.Maybe (Maybe(..)) diff --git a/src/Cheerio/Static.purs b/src/Cheerio/Static.purs index d82ea6c..2da8e90 100644 --- a/src/Cheerio/Static.purs +++ b/src/Cheerio/Static.purs @@ -1,4 +1,11 @@ -module Cheerio.Static where +module Cheerio.Static ( + CheerioStatic, + html, + load, + loadRoot, + select, + selectDeep, + root) where import Prelude import Cheerio (Cheerio)