dhall-1.27.0: dhall-lang/Prelude/JSON/null
{- Create a JSON null
```
let JSON = ./package.dhall
in JSON.render JSON.null
= "null"
```
-}
let JSON =
./Type sha256:5adb234f5868a5b0eddeb034d690aaba8cb94ea20d0d557003e90334fff6be3e
? ./Type
let null
: JSON
= λ(JSON : Type)
→ λ ( json
: { string : Text → JSON
, number : Double → JSON
, object : List { mapKey : Text, mapValue : JSON } → JSON
, array : List JSON → JSON
, bool : Bool → JSON
, null : JSON
}
)
→ json.null
in null