the-moby-effect
Version:
Moby/Docker API client built using effect-ts
14 lines (12 loc) • 476 B
text/typescript
import * as Schema from "effect/Schema";
export class ContainerWaitExitError extends Schema.Class<ContainerWaitExitError>("ContainerWaitExitError")(
{
Message: Schema.optional(Schema.String),
},
{
identifier: "ContainerWaitExitError",
title: "container.WaitExitError",
documentation:
"https://github.com/moby/moby/blob/a21b1a2d12e2c01542cb191eb526d7bfad0641e3/api/types/container/wait_exit_error.go#L6-L12",
}
) {}