the-moby-effect
Version:
Moby/Docker API client built using effect-ts
24 lines • 876 B
TypeScript
import * as Schema from "effect/Schema";
declare const PluginConfigArgs_base: Schema.Class<PluginConfigArgs, {
Description: typeof Schema.String;
Name: typeof Schema.String;
Settable: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
Value: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
}, Schema.Struct.Encoded<{
Description: typeof Schema.String;
Name: typeof Schema.String;
Settable: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
Value: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
}>, never, {
readonly Description: string;
} & {
readonly Name: string;
} & {
readonly Settable: readonly string[] | null;
} & {
readonly Value: readonly string[] | null;
}, {}, {}>;
export declare class PluginConfigArgs extends PluginConfigArgs_base {
}
export {};
//# sourceMappingURL=PluginConfigArgs.generated.d.ts.map