15 lines
384 B
Haskell
15 lines
384 B
Haskell
|
-- | This module provides 'client' which can automatically generate
|
||
|
-- querying functions for each endpoint just from the type representing your
|
||
|
-- API.
|
||
|
module Servant.Client.Ghcjs
|
||
|
(
|
||
|
client
|
||
|
, GhcjsClientM
|
||
|
, runGhcjsClientM
|
||
|
, GhcjsClientEnv(..)
|
||
|
, module Servant.Client.Core.Reexport
|
||
|
) where
|
||
|
|
||
|
import Servant.Client.Internal.XhrClient
|
||
|
import Servant.Client.Core.Reexport
|