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