the-moby-effect
Version:
Moby/Docker API client built using effect-ts
15 lines • 777 B
TypeScript
import * as Schema from "effect/Schema";
declare const ContainerMountPoint_base: Schema.Class<ContainerMountPoint, Schema.Struct<{
readonly Type: Schema.optional<Schema.Literals<readonly ["bind", "volume", "tmpfs", "npipe", "cluster", "image"]>>;
readonly Name: Schema.optional<Schema.String>;
readonly Source: Schema.String;
readonly Destination: Schema.String;
readonly Driver: Schema.optional<Schema.String>;
readonly Mode: Schema.String;
readonly RW: Schema.Boolean;
readonly Propagation: Schema.Literals<readonly ["", "rprivate", "private", "rshared", "shared", "rslave", "slave"]>;
}>, {}>;
export declare class ContainerMountPoint extends ContainerMountPoint_base {
}
export {};
//# sourceMappingURL=ContainerMountPoint.generated.d.ts.map