the-moby-effect
Version:
Moby/Docker API client built using effect-ts
15 lines • 781 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
export class JSONProgress extends /*#__PURE__*/Schema.Class("JSONProgress")({
current: /*#__PURE__*/Schema.optional(MobySchemas.Int64),
total: /*#__PURE__*/Schema.optional(MobySchemas.Int64),
start: /*#__PURE__*/Schema.optional(MobySchemas.Int64),
hidecounts: /*#__PURE__*/Schema.optional(Schema.Boolean),
units: /*#__PURE__*/Schema.optional(Schema.String),
winSize: /*#__PURE__*/Schema.optional(MobySchemas.Int64)
}, {
identifier: "JSONProgress",
title: "jsonmessage.JSONProgress",
documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/pkg/jsonmessage/jsonmessage.go#L30-L52"
}) {}
//# sourceMappingURL=JSONProgress.generated.js.map