Add docs for Internal module.

This commit is contained in:
Dillon Kearns 2019-10-21 16:19:44 -07:00
parent 5b5a7e2a89
commit f655449255
2 changed files with 17 additions and 1 deletions

View File

@ -12,6 +12,7 @@
"Pages.PagePath", "Pages.PagePath",
"Pages.Directory", "Pages.Directory",
"Pages.Platform", "Pages.Platform",
"Pages.Internal",
"Pages.Manifest", "Pages.Manifest",
"Pages.Manifest.Category" "Pages.Manifest.Category"
], ],

View File

@ -1,14 +1,29 @@
module Pages.Internal exposing (..) module Pages.Internal exposing
( Internal
, ApplicationType(..)
)
{-| TODO
@docs Internal
@docs ApplicationType
-}
import Json.Encode import Json.Encode
import Pages.Internal.Platform import Pages.Internal.Platform
{-| TODO
-}
type ApplicationType type ApplicationType
= Browser = Browser
| Cli | Cli
{-| TODO
-}
type alias Internal pathKey = type alias Internal pathKey =
{ applicationType : ApplicationType { applicationType : ApplicationType
, content : Pages.Internal.Platform.Content , content : Pages.Internal.Platform.Content