the-moby-effect
Version:
Moby/Docker API client built using effect-ts
17 lines (14 loc) • 622 B
text/typescript
import * as Schema from "effect/Schema";
import * as SystemContainerdNamespaces from "./SystemContainerdNamespaces.generated.ts";
export class SystemContainerdInfo extends Schema.Class<SystemContainerdInfo>("SystemContainerdInfo")(
{
Address: Schema.optional(Schema.String),
Namespaces: Schema.NullOr(SystemContainerdNamespaces.SystemContainerdNamespaces),
},
{
identifier: "SystemContainerdInfo",
title: "system.ContainerdInfo",
documentation:
"https://pkg.go.dev/github.com/docker/docker@v28.4.0+incompatible/api/types/system#ContainerdInfo",
}
) {}