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.Directory",
"Pages.Platform",
"Pages.Internal",
"Pages.Manifest",
"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 Pages.Internal.Platform
{-| TODO
-}
type ApplicationType
= Browser
| Cli
{-| TODO
-}
type alias Internal pathKey =
{ applicationType : ApplicationType
, content : Pages.Internal.Platform.Content