the-moby-effect
Version:
Moby/Docker API client built using effect-ts
21 lines • 796 B
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const ContainerStopOptions_base: Schema.Class<ContainerStopOptions, {
Signal: Schema.optional<typeof Schema.String>;
Timeout: Schema.optionalWith<MobySchemas.Int64Schemas.$Int64, {
nullable: true;
}>;
}, Schema.Struct.Encoded<{
Signal: Schema.optional<typeof Schema.String>;
Timeout: Schema.optionalWith<MobySchemas.Int64Schemas.$Int64, {
nullable: true;
}>;
}>, never, {
readonly Timeout?: MobySchemas.Int64Schemas.Int64Brand | undefined;
} & {
readonly Signal?: string | undefined;
}, {}, {}>;
export declare class ContainerStopOptions extends ContainerStopOptions_base {
}
export {};
//# sourceMappingURL=ContainerStopOptions.generated.d.ts.map