mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-25 09:21:57 +03:00
Fix docs.
This commit is contained in:
parent
0310152df4
commit
a788a05a73
@ -1,7 +1,7 @@
|
||||
module Server.Request exposing
|
||||
( Request(..)
|
||||
, Method(..), methodToString
|
||||
, succeed, fromResult
|
||||
, succeed, fromResult, skipMatch, validationError
|
||||
, requestTime, optionalHeader, expectContentType, expectJsonBody, jsonBodyResult
|
||||
, acceptMethod, acceptContentTypes
|
||||
, map, map2, oneOf, andMap, andThen
|
||||
@ -12,7 +12,6 @@ module Server.Request exposing
|
||||
, File, expectMultiPartFormPost
|
||||
, map3
|
||||
, errorsToString, errorToString, getDecoder, ValidationError
|
||||
, skipMatch, validationError
|
||||
)
|
||||
|
||||
{-|
|
||||
@ -21,7 +20,7 @@ module Server.Request exposing
|
||||
|
||||
@docs Method, methodToString
|
||||
|
||||
@docs succeed, fromResult
|
||||
@docs succeed, fromResult, skipMatch, validationError
|
||||
|
||||
@docs requestTime, optionalHeader, expectContentType, expectJsonBody, jsonBodyResult
|
||||
|
||||
@ -158,6 +157,7 @@ type ValidationError
|
||||
| MissingQueryParam { missingParam : String, allQueryParams : String }
|
||||
|
||||
|
||||
{-| -}
|
||||
validationError : String -> ValidationError
|
||||
validationError =
|
||||
ValidationError
|
||||
|
@ -2,7 +2,7 @@ module Server.Session exposing (Decoder, NotLoadedReason(..), Session(..), Value
|
||||
|
||||
{-|
|
||||
|
||||
@docs Decoder, NotLoadedReason, Session, SessionUpdate, Value, clearFlashCookies, empty, expectSession, flash, flashPrefix, get, insert, noUpdates, oneUpdate, remove, setValues, succeed, unwrap, update, updateAllFields, withFlash, withFlash, withSession
|
||||
@docs Decoder, NotLoadedReason, Session, Value, clearFlashCookies, empty, expectSession, flashPrefix, get, insert, remove, setValues, succeed, unwrap, update, withFlash, withSession
|
||||
|
||||
-}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user