diff options
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 |