the-moby-effect
Version:
Moby/Docker API client built using effect-ts
16 lines (14 loc) • 591 B
text/typescript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
export class ImagePruneResponse extends Schema.Class<ImagePruneResponse>("ImagePruneResponse")(
{
CachesDeleted: Schema.optionalWith(Schema.Array(Schema.String), { nullable: true }),
SpaceReclaimed: MobySchemas.UInt64,
},
{
identifier: "ImagePruneResponse",
title: "types.BuildCachePruneReport",
documentation:
"https://github.com/moby/moby/blob/2b1097f08088fd387a01c6d6a2a0f6916a39b872/api/types/image/image.go#L14-L19",
}
) {}