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