the-moby-effect
Version:
Moby/Docker API client built using effect-ts
33 lines • 1.18 kB
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const ImageHistoryResponseItem_base: Schema.Class<ImageHistoryResponseItem, {
Comment: typeof Schema.String;
Created: MobySchemas.Int64Schemas.$Int64;
CreatedBy: typeof Schema.String;
Id: typeof Schema.String;
Size: MobySchemas.Int64Schemas.$Int64;
Tags: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
}, Schema.Struct.Encoded<{
Comment: typeof Schema.String;
Created: MobySchemas.Int64Schemas.$Int64;
CreatedBy: typeof Schema.String;
Id: typeof Schema.String;
Size: MobySchemas.Int64Schemas.$Int64;
Tags: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
}>, never, {
readonly Size: MobySchemas.Int64Schemas.Int64Brand;
} & {
readonly Id: string;
} & {
readonly Created: MobySchemas.Int64Schemas.Int64Brand;
} & {
readonly Comment: string;
} & {
readonly CreatedBy: string;
} & {
readonly Tags: readonly string[] | null;
}, {}, {}>;
export declare class ImageHistoryResponseItem extends ImageHistoryResponseItem_base {
}
export {};
//# sourceMappingURL=ImageHistoryResponseItem.generated.d.ts.map