the-moby-effect
Version:
Moby/Docker API client built using effect-ts
22 lines • 944 B
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
import * as ContainerWaitExitError from "./ContainerWaitExitError.generated.js";
declare const ContainerWaitResponse_base: Schema.Class<ContainerWaitResponse, {
Error: Schema.optionalWith<typeof ContainerWaitExitError.ContainerWaitExitError, {
nullable: true;
}>;
StatusCode: MobySchemas.Int64Schemas.$Int64;
}, Schema.Struct.Encoded<{
Error: Schema.optionalWith<typeof ContainerWaitExitError.ContainerWaitExitError, {
nullable: true;
}>;
StatusCode: MobySchemas.Int64Schemas.$Int64;
}>, never, {
readonly Error?: ContainerWaitExitError.ContainerWaitExitError | undefined;
} & {
readonly StatusCode: MobySchemas.Int64Schemas.Int64Brand;
}, {}, {}>;
export declare class ContainerWaitResponse extends ContainerWaitResponse_base {
}
export {};
//# sourceMappingURL=ContainerWaitResponse.generated.d.ts.map