import public Text.Parse.ManualhexChar : Integer -> Charescape : SnocList Char -> Char -> SnocList Charencode : String -> Stringdata JSON : TypeJNull : JSONJInteger : Integer -> JSONJDouble : Double -> JSONJBool : Bool -> JSONJString : String -> JSONJArray : List JSON -> JSONJObject : List (String, JSON) -> JSONdropNull : JSON -> JSONRecursively drops `Null` entries from JSON objects.
data JSToken : Type0 ParseErr : TypelexJSON : String -> Either (Bounded ParseErr) (List (Bounded JSToken))parseJSON : Origin -> String -> Either (ParseError Void) JSON