UNPKG

@typed/io

Version:

Runtime IO type system

7 lines 380 B
import * as G from '../guard'; import { Decoder } from './Decoder'; export const Json = Decoder.fromGuard(G.Json, 'Json'); export const JsonObject = Decoder.fromGuard(G.JsonObject, 'JsonObject'); export const JsonArray = Decoder.fromGuard(G.JsonArray, 'JsonArray'); export const JsonPrimitive = Decoder.fromGuard(G.JsonPrimitive, 'JsonPrimitive'); //# sourceMappingURL=Json.js.map