From 6d5a2bbc100baf327cea48c0b35209a69d681674 Mon Sep 17 00:00:00 2001 From: Gareth Daniel Smith Date: Mon, 30 Jul 2018 20:13:54 +0100 Subject: [PATCH] Remove `*Impl` functions from the module interfaces. --- src/Cheerio.purs | 18 +++++++++++++++++- src/Cheerio/Static.purs | 9 ++++++++- 2 files changed, 25 insertions(+), 2 deletions(-) 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)