diff --git a/src/Pages/StaticHttp.elm b/src/Pages/StaticHttp.elm index 3a9d3d03..f75129dc 100644 --- a/src/Pages/StaticHttp.elm +++ b/src/Pages/StaticHttp.elm @@ -414,7 +414,11 @@ get url decoder = {-| The full details to perform a StaticHttp request. -} type alias RequestDetails = - HashRequest.Request + { url : String + , method : String + , headers : List ( String, String ) + , body : Maybe String + }