the-moby-effect
Version:
Moby/Docker API client built using effect-ts
25 lines • 1.35 kB
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const ContainerStorageStats_base: Schema.Class<ContainerStorageStats, {
read_count_normalized: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
read_size_bytes: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
write_count_normalized: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
write_size_bytes: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
}, Schema.Struct.Encoded<{
read_count_normalized: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
read_size_bytes: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
write_count_normalized: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
write_size_bytes: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
}>, never, {
readonly read_count_normalized?: MobySchemas.UInt64Schemas.UInt64Brand | undefined;
} & {
readonly read_size_bytes?: MobySchemas.UInt64Schemas.UInt64Brand | undefined;
} & {
readonly write_count_normalized?: MobySchemas.UInt64Schemas.UInt64Brand | undefined;
} & {
readonly write_size_bytes?: MobySchemas.UInt64Schemas.UInt64Brand | undefined;
}, {}, {}>;
export declare class ContainerStorageStats extends ContainerStorageStats_base {
}
export {};
//# sourceMappingURL=ContainerStorageStats.generated.d.ts.map