@typed/io
Version:
Runtime IO type system
10 lines • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JsonPrimitive = exports.JsonArray = exports.JsonObject = exports.Json = void 0;
const G = require("../guard");
const Decoder_1 = require("./Decoder");
exports.Json = Decoder_1.Decoder.fromGuard(G.Json, 'Json');
exports.JsonObject = Decoder_1.Decoder.fromGuard(G.JsonObject, 'JsonObject');
exports.JsonArray = Decoder_1.Decoder.fromGuard(G.JsonArray, 'JsonArray');
exports.JsonPrimitive = Decoder_1.Decoder.fromGuard(G.JsonPrimitive, 'JsonPrimitive');
//# sourceMappingURL=Json.js.map