@typed/io
Version:
Runtime IO type system
7 lines • 362 B
JavaScript
import * as G from '../guard';
import { Type } from './Type';
export const Json = Type.fromGuard(G.Json, 'Json');
export const JsonObject = Type.fromGuard(G.JsonObject, 'JsonObject');
export const JsonArray = Type.fromGuard(G.JsonArray, 'JsonArray');
export const JsonPrimitive = Type.fromGuard(G.JsonPrimitive, 'JsonPrimitive');
//# sourceMappingURL=Json.js.map