the-moby-effect
Version:
Moby/Docker API client built using effect-ts
19 lines • 1.09 kB
TypeScript
import * as Schema from "effect/Schema";
declare const ContainerExecOptions_base: Schema.Class<ContainerExecOptions, Schema.Struct<{
readonly User: Schema.withConstructorDefault<Schema.String>;
readonly Privileged: Schema.withConstructorDefault<Schema.Boolean>;
readonly Tty: Schema.withConstructorDefault<Schema.Boolean>;
readonly ConsoleSize: Schema.optional<Schema.NullOr<Schema.$Array<Schema.decodeTo<Schema.BigInt, Schema.String, never, never>>>>;
readonly AttachStdin: Schema.Boolean;
readonly AttachStderr: Schema.Boolean;
readonly AttachStdout: Schema.Boolean;
readonly DetachKeys: Schema.withConstructorDefault<Schema.String>;
readonly Env: Schema.withConstructorDefault<Schema.NullOr<Schema.$Array<Schema.String>>>;
readonly WorkingDir: Schema.withConstructorDefault<Schema.String>;
readonly Cmd: Schema.NullOr<Schema.$Array<Schema.String>>;
readonly Detach: Schema.Boolean;
}>, {}>;
export declare class ContainerExecOptions extends ContainerExecOptions_base {
}
export {};
//# sourceMappingURL=ContainerExecOptions.generated.d.ts.map