diff options
author | Jakub Hampl <kopomir@gmail.com> | 2018-07-13 15:20:50 +0100 |
---|---|---|
committer | Jakub Hampl <kopomir@gmail.com> | 2018-07-13 15:20:50 +0100 |
commit | cc6d143dd8124e13059c26125e70237795e9a9a4 (patch) | |
tree | e7d6a658990046b672bb59e6d97912e26b5fe057 /src/Mapbox/Cmd/Internal.elm | |
parent | 181401c4ffd06c127c57e27e2e88b05f7fdd1f88 (diff) |
Clean up various messes
Diffstat (limited to 'src/Mapbox/Cmd/Internal.elm')
-rw-r--r-- | src/Mapbox/Cmd/Internal.elm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Mapbox/Cmd/Internal.elm b/src/Mapbox/Cmd/Internal.elm new file mode 100644 index 0000000..1445e78 --- /dev/null +++ b/src/Mapbox/Cmd/Internal.elm @@ -0,0 +1,14 @@ +module Mapbox.Cmd.Internal exposing (..) + +import Json.Encode as Encode exposing (Value) + + +{-| Options use phantom types to show which commands support them. +-} +type Option support + = Option String Value + + +{-| -} +type Supported + = Supported |