the-moby-effect
Version:
Moby/Docker API client built using effect-ts
21 lines • 936 B
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const SwarmLimit_base: Schema.Class<SwarmLimit, {
NanoCPUs: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
MemoryBytes: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
Pids: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
}, Schema.Struct.Encoded<{
NanoCPUs: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
MemoryBytes: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
Pids: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
}>, never, {
readonly NanoCPUs?: MobySchemas.Int64Schemas.Int64Brand | undefined;
} & {
readonly MemoryBytes?: MobySchemas.Int64Schemas.Int64Brand | undefined;
} & {
readonly Pids?: MobySchemas.Int64Schemas.Int64Brand | undefined;
}, {}, {}>;
export declare class SwarmLimit extends SwarmLimit_base {
}
export {};
//# sourceMappingURL=SwarmLimit.generated.d.ts.map