the-moby-effect
Version:
Moby/Docker API client built using effect-ts
22 lines • 757 B
TypeScript
import * as Schema from "effect/Schema";
declare const SwarmDriver_base: Schema.Class<SwarmDriver, {
Name: Schema.optional<typeof Schema.String>;
Options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
}, Schema.Struct.Encoded<{
Name: Schema.optional<typeof Schema.String>;
Options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
}>, never, {
readonly Name?: string | undefined;
} & {
readonly Options?: {
readonly [x: string]: string;
} | undefined;
}, {}, {}>;
export declare class SwarmDriver extends SwarmDriver_base {
}
export {};
//# sourceMappingURL=SwarmDriver.generated.d.ts.map