1{-# LANGUAGE NoImplicitPrelude #-}
2-- |
3-- Module:      Data.Aeson.Internal
4-- Copyright:   (c) 2015-2016 Bryan O'Sullivan
5-- License:     BSD3
6-- Maintainer:  Bryan O'Sullivan <bos@serpentine.com>
7-- Stability:   experimental
8-- Portability: portable
9--
10-- Internal types and functions.
11--
12-- __Note__: all declarations in this module are unstable, and prone
13-- to being changed at any time.
14
15module Data.Aeson.Internal
16    (
17      IResult(..)
18    , JSONPathElement(..)
19    , JSONPath
20    , (<?>)
21    , formatError
22    , ifromJSON
23    , iparse
24    ) where
25
26
27import Data.Aeson.Types.Internal
28import Data.Aeson.Types.FromJSON (ifromJSON)
29