the-moby-effect
Version:
Moby/Docker API client built using effect-ts
21 lines • 791 B
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const SwarmContainerStatus_base: Schema.Class<SwarmContainerStatus, {
ContainerID: typeof Schema.String;
PID: MobySchemas.Int64Schemas.$Int64;
ExitCode: MobySchemas.Int64Schemas.$Int64;
}, Schema.Struct.Encoded<{
ContainerID: typeof Schema.String;
PID: MobySchemas.Int64Schemas.$Int64;
ExitCode: MobySchemas.Int64Schemas.$Int64;
}>, never, {
readonly ContainerID: string;
} & {
readonly ExitCode: MobySchemas.Int64Schemas.Int64Brand;
} & {
readonly PID: MobySchemas.Int64Schemas.Int64Brand;
}, {}, {}>;
export declare class SwarmContainerStatus extends SwarmContainerStatus_base {
}
export {};
//# sourceMappingURL=SwarmContainerStatus.generated.d.ts.map