UNPKG

the-moby-effect

Version:
20 lines (18 loc) 703 B
import * as Schema from "effect/Schema"; import * as MobySchemas from "../schemas/index.js"; export class ImageHistoryResponseItem extends Schema.Class<ImageHistoryResponseItem>("ImageHistoryResponseItem")( { Comment: Schema.String, Created: MobySchemas.Int64, CreatedBy: Schema.String, Id: Schema.String, Size: MobySchemas.Int64, Tags: Schema.NullOr(Schema.Array(Schema.String)), }, { identifier: "ImageHistoryResponseItem", title: "image.HistoryResponseItem", documentation: "https://github.com/moby/moby/blob/733755d7cb18a4dbea7c290cc56e61d05502aca0/api/types/image/image_history.go#L9-L36", } ) {}