the-moby-effect
Version:
Moby/Docker API client built using effect-ts
26 lines • 992 B
TypeScript
import * as Schema from "effect/Schema";
declare const SwarmNodeSpec_base: Schema.Class<SwarmNodeSpec, {
Role: Schema.optional<typeof Schema.String>;
Availability: Schema.optional<typeof Schema.String>;
Name: Schema.optional<typeof Schema.String>;
Labels: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
}, Schema.Struct.Encoded<{
Role: Schema.optional<typeof Schema.String>;
Availability: Schema.optional<typeof Schema.String>;
Name: Schema.optional<typeof Schema.String>;
Labels: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
}>, never, {
readonly Availability?: string | undefined;
} & {
readonly Name?: string | undefined;
} & {
readonly Labels: {
readonly [x: string]: string;
} | null;
} & {
readonly Role?: string | undefined;
}, {}, {}>;
export declare class SwarmNodeSpec extends SwarmNodeSpec_base {
}
export {};
//# sourceMappingURL=SwarmNodeSpec.generated.d.ts.map