the-moby-effect
Version:
Moby/Docker API client built using effect-ts
14 lines • 592 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobyNumber from "../schemas/number.js";
export class JsonmessageJSONError extends /*#__PURE__*/Schema.Class("JsonmessageJSONError")({
code: /*#__PURE__*/Schema.optional(/*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({
minimum: -(2n ** 63n),
maximum: 2n ** 63n - 1n
}))),
message: /*#__PURE__*/Schema.optional(Schema.String)
}, {
identifier: "JsonmessageJSONError",
title: "jsonmessage.JSONError",
documentation: ""
}) {}
//# sourceMappingURL=JsonmessageJSONError.generated.js.map