Properly export ToAuthInfo and AuthenticationInfo

This commit is contained in:
aaron levin 2015-09-13 23:36:30 +02:00 committed by Arian van Putten
parent 6a626cdecd
commit ce554a2f6b

View file

@ -149,11 +149,13 @@ module Servant.Docs
, DocOptions(..) , defaultDocOptions, maxSamples
, -- * Classes you need to implement for your types
<<<<<<< HEAD
ToSample(..)
, toSample
, noSamples
, singleSample
, samples
ToAuthInfo(..)
, sampleByteString
, sampleByteStrings
, ToParam(..)
@ -163,12 +165,13 @@ module Servant.Docs
Method(..)
, Endpoint, path, method, defEndpoint
, API, apiIntros, apiEndpoints, emptyAPI
, AuthenticationInfo(..), authIntro, authDataRequired
, DocCapture(..), capSymbol, capDesc
, DocQueryParam(..), ParamKind(..), paramName, paramValues, paramDesc, paramKind
, DocNote(..), noteTitle, noteBody
, DocIntro(..), introTitle, introBody
, Response(..), respStatus, respTypes, respBody, defResponse
, Action, captures, headers, notes, params, rqtypes, rqbody, response, defAction
, Action, authInfo, captures, headers, notes, params, rqtypes, rqbody, response, defAction
, single
) where