Merge pull request #4 from Dretch/restricted-exports

Remove `*Impl` functions from the module interfaces.
This commit is contained in:
icyrockcom 2018-07-30 19:03:55 -04:00 committed by GitHub
commit 534cf3d4bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 2 deletions

View File

@ -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(..))

View File

@ -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)