// Parser

export type Value
  = JsonString(String)
  | JsonInteger(Integer)
  | JsonFloat(Float)
  | JsonBoolean(Boolean)
  | JsonNull
  | JsonObject(Dictionary String Value)
  | JsonArray(List Value)
