blob: 82512bc0ddfd2c5153a48a165da07baa813f9d8c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | module Internal exposing (Expression(..), Supported)
import Json.Encode exposing (Value)
type Expression exprType resultType
    = Expression Value
type Supported
    = Supported
 |