the-moby-effect
Version:
Moby/Docker API client built using effect-ts
16 lines • 774 B
JavaScript
import * as Schema from "effect/Schema";
export var ContainerChangeKind;
(function (ContainerChangeKind) {
ContainerChangeKind[ContainerChangeKind["Modify"] = 0] = "Modify";
ContainerChangeKind[ContainerChangeKind["Add"] = 1] = "Add";
ContainerChangeKind[ContainerChangeKind["Delete"] = 2] = "Delete";
})(ContainerChangeKind || (ContainerChangeKind = {}));
export class ContainerChange extends /*#__PURE__*/Schema.Class("ContainerChange")({
Path: Schema.String,
Kind: /*#__PURE__*/Schema.Enums(ContainerChangeKind)
}, {
identifier: "ContainerChange",
title: "archive.Change",
documentation: "https://github.com/moby/moby/blob/a21b1a2d12e2c01542cb191eb526d7bfad0641e3/pkg/archive/changes.go#L43-L50"
}) {}
//# sourceMappingURL=ContainerChange.generated.js.map