the-moby-effect
Version:
Moby/Docker API client built using effect-ts
35 lines • 1.22 kB
TypeScript
import * as Schema from "effect/Schema";
import * as Driver from "./Driver.generated.js";
declare const VolumeOptions_base: Schema.Class<VolumeOptions, {
NoCopy: Schema.optional<typeof Schema.Boolean>;
Labels: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
Subpath: Schema.optional<typeof Schema.String>;
DriverConfig: Schema.optionalWith<typeof Driver.Driver, {
nullable: true;
}>;
}, Schema.Struct.Encoded<{
NoCopy: Schema.optional<typeof Schema.Boolean>;
Labels: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
Subpath: Schema.optional<typeof Schema.String>;
DriverConfig: Schema.optionalWith<typeof Driver.Driver, {
nullable: true;
}>;
}>, never, {
readonly Labels?: {
readonly [x: string]: string;
} | undefined;
} & {
readonly NoCopy?: boolean | undefined;
} & {
readonly Subpath?: string | undefined;
} & {
readonly DriverConfig?: Driver.Driver | undefined;
}, {}, {}>;
export declare class VolumeOptions extends VolumeOptions_base {
}
export {};
//# sourceMappingURL=VolumeOptions.generated.d.ts.map