mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-26 05:13:24 +03:00
Add docs for Internal module.
This commit is contained in:
parent
5b5a7e2a89
commit
f655449255
1
elm.json
1
elm.json
@ -12,6 +12,7 @@
|
||||
"Pages.PagePath",
|
||||
"Pages.Directory",
|
||||
"Pages.Platform",
|
||||
"Pages.Internal",
|
||||
"Pages.Manifest",
|
||||
"Pages.Manifest.Category"
|
||||
],
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user