diff options
author | Jakub Hampl <kopomir@gmail.com> | 2019-02-15 20:50:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-15 20:50:23 +0000 |
commit | 9bd079e10dfa68df2f2fec5adb35df90edb3525f (patch) | |
tree | c65a4314629a043b1fe91dca0d56bbdcfb4c5dff /src/Internal.elm | |
parent | 16f0d89d0f19c2d8bf1bad6c41383973d9ce1ad6 (diff) |
Mapbox Upgrade + Simplified Enums (#9)4.0.0
Diffstat (limited to 'src/Internal.elm')
-rw-r--r-- | src/Internal.elm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Internal.elm b/src/Internal.elm new file mode 100644 index 0000000..82512bc --- /dev/null +++ b/src/Internal.elm @@ -0,0 +1,11 @@ +module Internal exposing (Expression(..), Supported) + +import Json.Encode exposing (Value) + + +type Expression exprType resultType + = Expression Value + + +type Supported + = Supported |