mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-26 13:21:42 +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.PagePath",
|
||||||
"Pages.Directory",
|
"Pages.Directory",
|
||||||
"Pages.Platform",
|
"Pages.Platform",
|
||||||
|
"Pages.Internal",
|
||||||
"Pages.Manifest",
|
"Pages.Manifest",
|
||||||
"Pages.Manifest.Category"
|
"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 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
|
||||||
|
Loading…
Reference in New Issue
Block a user