the-moby-effect
Version:
Moby/Docker API client built using effect-ts
18 lines • 699 B
JavaScript
import * as Schema from "effect/Schema";
import * as SwarmVersion from "./SwarmVersion.generated.js";
export class SwarmMeta extends /*#__PURE__*/Schema.Class("SwarmMeta")({
Version: /*#__PURE__*/Schema.optionalWith(SwarmVersion.SwarmVersion, {
nullable: true
}),
CreatedAt: /*#__PURE__*/Schema.optionalWith(Schema.DateFromString, {
nullable: true
}),
UpdatedAt: /*#__PURE__*/Schema.optionalWith(Schema.DateFromString, {
nullable: true
})
}, {
identifier: "SwarmMeta",
title: "swarm.Meta",
documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/swarm/common.go#L18-L23"
}) {}
//# sourceMappingURL=SwarmMeta.generated.js.map