the-moby-effect
Version:
Moby/Docker API client built using effect-ts
26 lines • 1.28 kB
TypeScript
import * as Schema from "effect/Schema";
import * as PluginDevice from "./PluginDevice.generated.js";
import * as PluginMount from "./PluginMount.generated.js";
declare const PluginSettings_base: Schema.Class<PluginSettings, {
Args: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
Devices: Schema.NullOr<Schema.Array$<Schema.NullOr<typeof PluginDevice.PluginDevice>>>;
Env: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
Mounts: Schema.NullOr<Schema.Array$<Schema.NullOr<typeof PluginMount.PluginMount>>>;
}, Schema.Struct.Encoded<{
Args: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
Devices: Schema.NullOr<Schema.Array$<Schema.NullOr<typeof PluginDevice.PluginDevice>>>;
Env: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
Mounts: Schema.NullOr<Schema.Array$<Schema.NullOr<typeof PluginMount.PluginMount>>>;
}>, never, {
readonly Env: readonly string[] | null;
} & {
readonly Devices: readonly (PluginDevice.PluginDevice | null)[] | null;
} & {
readonly Mounts: readonly (PluginMount.PluginMount | null)[] | null;
} & {
readonly Args: readonly string[] | null;
}, {}, {}>;
export declare class PluginSettings extends PluginSettings_base {
}
export {};
//# sourceMappingURL=PluginSettings.generated.d.ts.map