the-moby-effect
Version:
Moby/Docker API client built using effect-ts
26 lines • 1.26 kB
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
import * as SwarmGenericResource from "./SwarmGenericResource.generated.js";
declare const SwarmResources_base: Schema.Class<SwarmResources, {
NanoCPUs: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
MemoryBytes: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
GenericResources: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof SwarmGenericResource.SwarmGenericResource>>, {
nullable: true;
}>;
}, Schema.Struct.Encoded<{
NanoCPUs: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
MemoryBytes: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
GenericResources: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof SwarmGenericResource.SwarmGenericResource>>, {
nullable: true;
}>;
}>, never, {
readonly NanoCPUs?: MobySchemas.Int64Schemas.Int64Brand | undefined;
} & {
readonly MemoryBytes?: MobySchemas.Int64Schemas.Int64Brand | undefined;
} & {
readonly GenericResources?: readonly (SwarmGenericResource.SwarmGenericResource | null)[] | undefined;
}, {}, {}>;
export declare class SwarmResources extends SwarmResources_base {
}
export {};
//# sourceMappingURL=SwarmResources.generated.d.ts.map