Remove *Impl
functions from the module interfaces.
This commit is contained in:
parent
cb1c77a9ea
commit
6d5a2bbc10
@ -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.Function.Uncurried (Fn2, Fn3, Fn4, runFn2, runFn3, runFn4)
|
||||||
import Data.Maybe (Maybe(..))
|
import Data.Maybe (Maybe(..))
|
||||||
|
@ -1,4 +1,11 @@
|
|||||||
module Cheerio.Static where
|
module Cheerio.Static (
|
||||||
|
CheerioStatic,
|
||||||
|
html,
|
||||||
|
load,
|
||||||
|
loadRoot,
|
||||||
|
select,
|
||||||
|
selectDeep,
|
||||||
|
root) where
|
||||||
|
|
||||||
import Prelude
|
import Prelude
|
||||||
import Cheerio (Cheerio)
|
import Cheerio (Cheerio)
|
||||||
|
Loading…
Reference in New Issue
Block a user