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